Skip to content

Commit 46370e7

Browse files
committed
[CI] Fix Puppeteer launch timeout
1 parent 0bc8b1d commit 46370e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/functional.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ describe('Functional tests using webpack', function() {
8181
this.timeout(10000);
8282

8383
before(function(done) {
84-
puppeteer.launch().then(_browser => {
84+
console.log('before');
85+
this.timeout(30000);
86+
console.log('before 2');
87+
puppeteer.launch({ headless: true }).then(_browser => {
88+
console.log('before 3');
8589
browser = _browser;
8690
done();
8791
});

0 commit comments

Comments
 (0)