Skip to content

Commit d603582

Browse files
committed
fix(e2e): update local end-to-end test command and disable caching
1 parent 141f591 commit d603582

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"node:clean": "make -C ./docker clean",
2222
"test:ci": "turbo run test -- --run --coverage.enabled --coverage.reporter=json-summary --coverage.reporter=json",
2323
"test:e2e": "turbo run test:e2e",
24-
"test:e2e:local": "pnpm --filter @e2e-tests/runner test:e2e:local",
24+
"test:e2e:local": "turbo run test:e2e:local --filter @e2e-tests/runner",
2525
"lint:check": "biome check --apply-unsafe .",
2626
"lint:ci": "biome lint --max-diagnostics=1000 --diagnostic-level=error .",
2727
"format": "biome format --write .",

turbo.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
},
2727
"test:e2e": {
2828
"cache": false
29+
},
30+
"test:e2e:local": {
31+
"cache": false
2932
}
3033
}
3134
}

0 commit comments

Comments
 (0)