Add back testUtilities.debug
This commit is contained in:
parent
3ff9b87a22
commit
0ab8ec34d0
4 changed files with 17 additions and 0 deletions
|
@ -123,6 +123,14 @@ async function launchElectron(attempt: number): Promise<void> {
|
|||
|
||||
const match = line.match(/^ci:test-electron:event=(.*)/);
|
||||
if (!match) {
|
||||
const debugMatch = line.match(/ci:test-electron:debug=(.*)?/);
|
||||
if (debugMatch) {
|
||||
try {
|
||||
console.log('DEBUG:', JSON.parse(debugMatch[1]));
|
||||
} catch {
|
||||
// pass
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue