We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4445777 commit 121e842Copy full SHA for 121e842
connect.js
@@ -43,8 +43,8 @@ const browserWSEndpoint = process.env.wsURL || null;
43
44
if (!browserWSEndpoint) {
45
const browser = await puppeteer.launch({
46
- handleSIGINT: false,
47
- headless: false
+ handleSIGINT: false, // so Chrome doesn't exit when we quit Node.
+ headless: false // to see what's happening
48
});
49
50
console.log('1. Quit this script (cmd/ctrl+C).');
0 commit comments