Skip to content

Commit

Permalink
Fix timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Oct 21, 2023
1 parent a29b284 commit 2e8a8a7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require('source-map-support').install();

describe('rollup', () => {
describe('rollup', function () {
this.timeout(30_000);
require('./misc/index.js');
require('./function/index.js');
require('./form/index.js');
Expand All @@ -12,4 +13,4 @@ describe('rollup', () => {
require('./load-config-file/index.js');
require('./cli/index.js');
require('./watch/index.js');
}).timeout(30_000);
});

0 comments on commit 2e8a8a7

Please sign in to comment.