Skip to content

Commit 632cfc5

Browse files
committed
fix: test:quick uses node config instead of workers for faster runs
The quick test suite only contains pure unit tests — no need to spin up a workerd instance. Drops from ~10s to ~1.5s.
1 parent cd0f772 commit 632cfc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"test": "vitest run -c vitest.workers.config.ts && vitest run",
2828
"test:workers": "vitest run -c vitest.workers.config.ts",
2929
"test:node": "vitest run",
30-
"test:quick": "vitest run -c vitest.workers.config.ts src/convenience.test.ts src/format.test.ts src/footer.test.ts src/decode.test.ts src/merge.test.ts src/partial-agg.test.ts src/vip-cache.test.ts src/page-processor.test.ts src/sql/lexer.test.ts src/sql/parser.test.ts src/sql/compiler.test.ts src/sql/evaluator.test.ts src/sql/integration.test.ts",
30+
"test:quick": "vitest run src/convenience.test.ts src/format.test.ts src/footer.test.ts src/decode.test.ts src/merge.test.ts src/partial-agg.test.ts src/vip-cache.test.ts src/page-processor.test.ts src/sql/lexer.test.ts src/sql/parser.test.ts src/sql/compiler.test.ts src/sql/evaluator.test.ts src/sql/integration.test.ts",
3131
"test:watch": "vitest",
3232
"deploy": "pnpm run build && wrangler deploy",
3333
"wasm": "pnpm run build:wasm",

0 commit comments

Comments
 (0)