Skip to content

Commit 6bbe55d

Browse files
committed
Reduce wallaby workers used to improve reliability (and the cost of a little feedback speed)
1 parent d37bb4c commit 6bbe55d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

wallaby.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,16 @@ module.exports = (wallaby) => {
1919
// want wallaby to run on raw source. This is a simple remap of paths to lets us do that.
2020
'test/integration/*.ts': file => {
2121
return file.content.replace(
22-
/("|')..\/..("|')/g,
23-
'"../../src/main"'
24-
);
25-
}
22+
/("|')..\/..("|')/g,
23+
'"../../src/main"'
24+
);
25+
}
26+
},
27+
28+
workers: {
29+
initial: 4,
30+
regular: 1,
31+
restart: true
2632
},
2733

2834
testFramework: 'mocha',

0 commit comments

Comments
 (0)