From bba30bf0cb675407e8537f2acfb42e9c5e4e7660 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Thu, 21 Sep 2023 17:23:05 +0200 Subject: [PATCH] harmonize timeouts --- README.md | 2 +- bindings/wasm/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 95f7588653..7d77baa89c 100644 --- a/README.md +++ b/README.md @@ -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) --> diff --git a/bindings/wasm/package.json b/bindings/wasm/package.json index 664c6c62fe..a4780f4301 100644 --- a/bindings/wasm/package.json +++ b/bindings/wasm/package.json @@ -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"