|
23 | 23 | "start": "concurrently \"npm:build.watch\" \"npm:test.watch\" \"npm:tsc.watch\" -n build,test,tsc -c green,magenta,cyan",
|
24 | 24 | "release.prepare": "yarn lint && yarn test.unit && yarn node scripts --tsc --build --api --eslint --platform-binding --wasm --prepare-release",
|
25 | 25 | "release.prepare.qwik-city": "cd packages/qwik-city && yarn test && yarn build && yarn node -r esbuild-register scripts/prepare-release.ts",
|
26 |
| - "test": "yarn build.full && jest && yarn test.e2e", |
27 |
| - "test.unit": "jest", |
| 26 | + "test": "yarn build.full && yarn test.unit && yarn test.e2e", |
| 27 | + "test.unit": "jest && yarn test.uvu", |
| 28 | + "test.uvu": "uvu -r tsm packages test.ts", |
28 | 29 | "test.rust": "make test",
|
29 | 30 | "test.watch": "jest --watch",
|
30 | 31 | "test.e2e": "yarn test.e2e.chromium && yarn test.e2e.firefox && yarn test.e2e.webkit",
|
|
48 | 49 | "devDependencies": {
|
49 | 50 | "@builder.io/partytown": "0.6.2",
|
50 | 51 | "@builder.io/qwik-dom": "2.1.18",
|
51 |
| - "@jest/types": "^28.1.3", |
52 | 52 | "@microsoft/api-extractor": "7.28.4",
|
53 | 53 | "@napi-rs/cli": "2.6.2",
|
54 | 54 | "@napi-rs/triples": "1.1.0",
|
|
58 | 58 | "@types/cross-spawn": "6.0.2",
|
59 | 59 | "@types/eslint": "8.4.5",
|
60 | 60 | "@types/express": "4.17.13",
|
61 |
| - "@types/jest": "^28.1.5", |
62 | 61 | "@types/mri": "1.1.1",
|
63 | 62 | "@types/node": "latest",
|
64 | 63 | "@types/node-fetch": "2.6.2",
|
|
69 | 68 | "@typescript-eslint/utils": "5.30.6",
|
70 | 69 | "all-contributors-cli": "^6.20.0",
|
71 | 70 | "brotli": "1.3.3",
|
72 |
| - "commitizen": "4.2.4", |
| 71 | + "commitizen": "4.2.5", |
73 | 72 | "concurrently": "7.2.2",
|
74 | 73 | "cross-spawn": "7.0.3",
|
75 | 74 | "cz-conventional-changelog": "3.3.0",
|
76 | 75 | "esbuild": "0.14.49",
|
77 | 76 | "esbuild-register": "3.3.3",
|
78 |
| - "eslint": "8.19.0", |
| 77 | + "eslint": "8.20.0", |
79 | 78 | "eslint-plugin-no-only-tests": "2.6.0",
|
80 | 79 | "execa": "6.1.0",
|
81 | 80 | "express": "4.18.1",
|
|
90 | 89 | "terser": "5.14.2",
|
91 | 90 | "todomvc-app-css": "2.4.2",
|
92 | 91 | "todomvc-common": "1.0.5",
|
93 |
| - "ts-jest": "28.0.6", |
| 92 | + "ts-jest": "28.0.7", |
94 | 93 | "typescript": "4.7.4",
|
95 |
| - "vite": "3.0.0", |
| 94 | + "vite": "3.0.1", |
96 | 95 | "vite-tsconfig-paths": "3.5.0",
|
97 | 96 | "wasm-pack": "0.10.3"
|
98 | 97 | },
|
|
137 | 136 | "useESM": true
|
138 | 137 | }
|
139 | 138 | },
|
| 139 | + "extensionsToTreatAsEsm": [ |
| 140 | + ".ts", |
| 141 | + ".tsx" |
| 142 | + ], |
140 | 143 | "moduleFileExtensions": [
|
141 | 144 | "ts",
|
142 | 145 | "tsx",
|
|
191 | 194 | "<rootDir>/target/"
|
192 | 195 | ],
|
193 | 196 | "testRegex": "/(scripts|packages)/.*\\.unit\\.(ts|tsx)$"
|
| 197 | + }, |
| 198 | + "dependencies": { |
| 199 | + "tsm": "^2.2.1", |
| 200 | + "uvu": "^0.5.6" |
194 | 201 | }
|
195 | 202 | }
|
0 commit comments