We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f909470 + 0f75cbb commit bf88b44Copy full SHA for bf88b44
packages/bundler/package.json
@@ -13,7 +13,7 @@
13
],
14
"scripts": {
15
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
16
- "test": "mocha -r ts-node/register test/**/*.test.ts",
+ "test": "mocha -r ts-node/register --timeout 60000 test/**/*.test.ts",
17
"prepack": "tsc --outDir dist --declaration --sourcemap --module commonjs"
18
},
19
"dependencies": {
packages/bundler/test/bundler.test.ts
@@ -9,7 +9,6 @@ import { spawn } from './world';
9
import { Bundler } from '../src/index';
10
11
describe("Bundler", function() {
12
- this.timeout(5000);
let bundler: Bundler;
beforeEach((done) => rmrf('./build', done));
0 commit comments