Skip to content

Commit 1248b36

Browse files
fix: add option no-cache
1 parent 9a1cb23 commit 1248b36

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

e2e/svelte-5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"scripts": {
7-
"test": "pnpm install && NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage",
7+
"test": "pnpm install && NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage --no-cache",
88
"test:watch": "pnpm run test --watch"
99
},
1010
"devDependencies": {

e2e/svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"build": "rollup -c",
77
"dev": "rollup -c -w",
88
"start": "sirv public --no-clear",
9-
"test": "jest src",
9+
"test": "jest src --no-cache",
1010
"test:watch": "pnpm run test -- --watch"
1111
},
1212
"devDependencies": {

e2e/sveltekit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"preview": "vite preview",
99
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
1010
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
11-
"test": "svelte-kit sync && cross-env NODE_OPTIONS=--experimental-vm-modules jest src --config jest.config.json",
11+
"test": "svelte-kit sync && cross-env NODE_OPTIONS=--experimental-vm-modules jest src --config jest.config.json --no-cache",
1212
"test:watch": "pnpm run test -- --watch"
1313
},
1414
"devDependencies": {

0 commit comments

Comments
 (0)