Skip to content

Commit 27e1b83

Browse files
committed
fix(test): increased the timeout to 5
This should prevent erroneous coverage reports from being generated due to timing out issues.
1 parent 4033849 commit 27e1b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function run(): Promise<void> {
2222

2323
try {
2424
// Run the mocha test
25-
mocha.timeout(100000);
25+
mocha.timeout(300000);
2626
mocha.run(failures => {
2727
if (failures > 0) {
2828
e(new Error(`${failures} tests failed.`));

0 commit comments

Comments
 (0)