From 15ddfb708586097d611d407b5c4937e67b3d63fa Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Sep 2017 17:27:22 +0200 Subject: [PATCH] debug smoke test tidbits --- test/smoke/src/areas/debug/debug.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/smoke/src/areas/debug/debug.test.ts b/test/smoke/src/areas/debug/debug.test.ts index 7c039187c9d..ca9e4e046bc 100644 --- a/test/smoke/src/areas/debug/debug.test.ts +++ b/test/smoke/src/areas/debug/debug.test.ts @@ -45,6 +45,7 @@ describe('Debug', () => { await app.workbench.debug.openDebugViewlet(); await app.workbench.openFile('app.js'); await app.workbench.debug.configure(); + await app.screenCapturer.capture('launch.json file'); const content = await app.workbench.editor.getEditorVisibleText(); // TODO@isidor: sometimes on the linux build agent, @@ -74,7 +75,7 @@ describe('Debug', () => { http.get(`http://localhost:3000`) .on('error', e => void 0); c(); - }, 400); + }, 600); }); await app.workbench.debug.waitForStackFrame(sf => sf.name === 'index.js' && sf.lineNumber === 6); @@ -108,7 +109,7 @@ describe('Debug', () => { http.get(`http://localhost:3000`) .on('error', e => void 0); c(); - }, 400); + }, 600); }); await app.workbench.debug.waitForStackFrame(sf => sf.name === 'index.js' && sf.lineNumber === 6); -- GitLab