Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit e6e07e0

Browse files
committed
increase timeout for flakey test
1 parent e7d1b3e commit e6e07e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
},
6767
"scripts": {
6868
"lint": "eslint .",
69-
"test": "tap",
69+
"test": "jest",
7070
"start": "node bin/server.js",
7171
"lint:format": "eslint --fix ."
7272
},
@@ -94,4 +94,4 @@
9494
"pre-push": "npm run lint"
9595
}
9696
}
97-
}
97+
}

test/bundler.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,6 @@ describe('bundleInProcess', () => {
108108

109109
expect(workerWithoutConfigWasEnded).toBe(true);
110110
expect(workerWithEmptyConfigWasEnded).toBe(true);
111-
});
111+
}, 10000);
112112
});
113113
});

0 commit comments

Comments
 (0)