Increase nodejs mocha timeout to 5000ms to align with Electron and browser unit tests (#142545)

This commit is contained in:
Alex Dima 2022-03-01 20:42:03 +01:00
parent aec0803b87
commit f52664a3a3
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9

View file

@ -12,7 +12,7 @@
"test": "echo Please run any of the test scripts from the scripts folder.",
"test-browser": "npx playwright install && node test/unit/browser/index.js",
"test-browser-no-install": "node test/unit/browser/index.js",
"test-node": "mocha test/unit/node/index.js --delay --ui=tdd --exit",
"test-node": "mocha test/unit/node/index.js --delay --ui=tdd --timeout=5000 --exit",
"preinstall": "node build/npm/preinstall.js",
"postinstall": "node build/npm/postinstall.js",
"compile": "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js compile",