Skip to content

Commit

Permalink
Run tests in parallel by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Nov 29, 2024
1 parent 060749d commit 7082bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"cache": "deno task codegen && deno cache mod.ts",
"check": "deno task codegen && deno fmt --check && deno lint && deno check */*.ts",
"codegen": "deno run --allow-read --allow-write --check codegen/main.ts vocab/ ../runtime/ > vocab/vocab.ts && deno fmt vocab/vocab.ts && deno cache vocab/vocab.ts && deno check vocab/vocab.ts",
"test-without-codegen": "deno test --check --doc --allow-read --allow-write --allow-env --unstable-kv --trace-leaks",
"test-without-codegen": "deno test --check --doc --allow-read --allow-write --allow-env --unstable-kv --trace-leaks --parallel",
"test": "deno task codegen && deno task test-without-codegen",
"coverage": "rm -rf coverage/ && deno task test --coverage && deno coverage --html coverage",
"bench": "deno task codegen && deno bench --allow-read --allow-write --allow-net --allow-env --allow-run --unstable-kv",
Expand Down

0 comments on commit 7082bad

Please sign in to comment.