test: more logging in node inspector test (#23746)

This commit is contained in:
Cheng Zhao 2020-05-26 10:20:16 +09:00 коммит произвёл GitHub
Родитель 2029ff1903
Коммит 0dabd5e8c7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -258,10 +258,13 @@ describe('node feature', () => {
const success = false;
function listener (data: Buffer) {
output += data;
console.log(data); // NOTE: temporary debug logging to try to catch flake.
console.log(data.toString()); // NOTE: temporary debug logging to try to catch flake.
const match = /^Debugger listening on (ws:\/\/.+:\d+\/.+)\n/m.exec(output.trim());
if (match) {
cleanup();
// NOTE: temporary debug logging to try to catch flake.
child.stderr.on('data', (m) => console.log(m.toString()));
child.stdout.on('data', (m) => console.log(m.toString()));
const w = (webContents as any).create({}) as WebContents;
w.loadURL('about:blank')
.then(() => w.executeJavaScript(`new Promise(resolve => {

5
spec/fixtures/module/delay-exit.js поставляемый
Просмотреть файл

@ -1,3 +1,6 @@
const { app } = require('electron');
process.on('message', () => app.quit());
process.on('message', () => {
console.log('Notified to quit');
app.quit();
});