Skip to content

Commit

Permalink
chore(ci): add a flag to jest to indicate what might be stuck when ru…
Browse files Browse the repository at this point in the history
…nning
  • Loading branch information
IceTDrinker committed Sep 6, 2024
1 parent 26b6669 commit 019548d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tfhe/web_wasm_parallel_tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "jest ./test --runInBand --testNamePattern=Test",
"bench": "jest ./test --runInBand --testNamePattern=Bench",
"test": "jest ./test --runInBand --detectOpenHandles --testNamePattern=Test",
"bench": "jest ./test --runInBand --detectOpenHandles --testNamePattern=Bench",
"build": "cp -r ../../tfhe/pkg ./ && webpack build ./index.js --mode production -o dist --output-filename index.js && cp index.html dist/ && cp favicon.ico dist/",
"server": "serve --config ../serve.json dist/",
"test-separate-processes": "jest --listTests | xargs -L 1 jest --runInBand --testNamePattern=Test",
"bench-separate-processes": "jest --listTests | xargs -L 1 jest --runInBand --testNamePattern=Bench",
"test-separate-processes": "jest --listTests | xargs -L 1 jest --runInBand --detectOpenHandles --testNamePattern=Test",
"bench-separate-processes": "jest --listTests | xargs -L 1 jest --runInBand --detectOpenHandles --testNamePattern=Bench",
"test2": "mocha",
"format": "prettier . --write",
"check-format": "prettier . --check"
Expand Down

0 comments on commit 019548d

Please sign in to comment.