Skip to content

Commit

Permalink
chore(js): increase timeout for ZK test as it can be surpassed
Browse files Browse the repository at this point in the history
- this seemed to cause the test runner to hang forever
- also add a timeout in the GitHub workflow, to avoid having the test
runner wait forever (or in this case 6 hours because of default timeout)
  • Loading branch information
IceTDrinker committed Sep 6, 2024
1 parent 26055b2 commit 32b45ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/aws_tfhe_wasm_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
make test_nodejs_wasm_api_in_docker
- name: Run parallel wasm tests
timeout-minutes: 60
run: |
make test_web_js_api_parallel_ci
Expand Down
4 changes: 2 additions & 2 deletions tfhe/web_wasm_parallel_tests/test/compact-public-key.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ it(
async () => {
await runTestAttachedToButton("compactPublicKeyZeroKnowledge");
},
1200 * 1000,
); // 20 minutes timeout
3600 * 1000,
); // 60 minutes timeout

it(
"Compact Public Key Bench 64 Bit With ZeroKnowledge",
Expand Down

0 comments on commit 32b45ac

Please sign in to comment.