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.
1 parent 5558638 commit 390b251Copy full SHA for 390b251
test/functional.js
@@ -81,17 +81,12 @@ describe('Functional tests using webpack', function() {
81
this.timeout(10000);
82
83
before(function(done) {
84
- console.log('before');
85
- this.timeout(30000);
86
- console.log('before 2');
87
puppeteer.launch({ headless: true, args: ['--no-sandbox', '--disable-setuid-sandbox'] }).then(_browser => {
88
- console.log('before 3');
89
browser = _browser;
90
done();
91
}).catch(err => {
92
- console.log('before 4');
+ console.log('Unable to launch Puppeteer');
93
console.log(err);
94
- console.log('before 5');
95
throw err;
96
});
97
0 commit comments