Skip to content

Commit bdef9af

Browse files
committed
build: abort release health test after 10s
1 parent a34aeaf commit bdef9af

File tree

1 file changed

+1
-1
lines changed
  • packages/node/test/manual/release-health

1 file changed

+1
-1
lines changed

packages/node/test/manual/release-health/runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for (const dir of scenariosDirs) {
1515

1616
const processes = scenarios.map(([filename, filepath]) => {
1717
return new Promise(resolve => {
18-
const scenarioProcess = spawn('node', [filepath]);
18+
const scenarioProcess = spawn('node', [filepath], { timeout: 10000 });
1919
const output = [];
2020
const errors = [];
2121

0 commit comments

Comments
 (0)