Skip to content

Commit b7c1310

Browse files
committed
extend timeout
1 parent e244600 commit b7c1310

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.kokoro/build-with-run.sh

+2
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,6 @@ export CLOUD_SQL_CONNECTION_NAME=$(cat $KOKORO_GFILE_DIR/secrets-pg-connection-n
9292
export IDP_KEY=$(gcloud secrets versions access latest --secret="nodejs-docs-samples-idp-key" --project="${GOOGLE_CLOUD_PROJECT}")
9393

9494
npm test
95+
set -x
9596
npm run --if-present system-test
97+
set +x

run/markdown-preview/editor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"scripts": {
1717
"start": "node index.js",
1818
"test": "mocha test/app.test.js --timeout=10000 --exit",
19-
"system-test": "mocha test/system.test.js --timeout=300000"
19+
"system-test": "mocha test/system.test.js --timeout=480000 --exit"
2020
},
2121
"dependencies": {
2222
"express": "^4.17.1",

run/markdown-preview/renderer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"start": "node index.js",
1717
"test": "mocha test/app.test.js --exit",
18-
"system-test": "mocha test/system.test.js --timeout=10000 --exit"
18+
"system-test": "mocha test/system.test.js --timeout=180000 --exit"
1919
},
2020
"dependencies": {
2121
"express": "^4.17.1",

0 commit comments

Comments
 (0)