Skip to content

Commit

Permalink
harmonize timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass committed Sep 21, 2023
1 parent cdfc5a5 commit bba30bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ cd ../..
mkdir tmp/src
cat > tmp/src/main.rs
cd tmp
timeout 900 cargo build || (echo "Process timed out after 900 seconds" && exit 1)
timeout 360 cargo build || (echo "Process timed out after 360 seconds" && exit 1)
-->
<!-- !test check Rust Example -->

Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"test:browser:parallel": "npm run build:examples:web && cypress-parallel -s test:browser -t 4 -d cypress/e2e -a '\"--quiet\"'",
"test:browser": "cypress run --headless",
"test:readme": "mocha ./tests/txm_readme.js --retries 3 --timeout 180000 --exit",
"test:readme:rust": "mocha ./tests/txm_readme_rust.js --retries 3 --timeout 180000 --exit",
"test:readme:rust": "mocha ./tests/txm_readme_rust.js --retries 3 --timeout 360000 --exit",
"test:unit:node": "ts-mocha -p tsconfig.node.json ./tests/*.ts --parallel --exit",
"cypress": "cypress open",
"fmt": "dprint fmt"
Expand Down

0 comments on commit bba30bf

Please sign in to comment.