From c73c381c7c299e472955e5753fa8b8d0aa1dbd68 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Tue, 8 Aug 2017 13:03:59 +0200 Subject: [PATCH] Revert "temporarily disable faling smoke test" This reverts commit 8a9e389167522f5132670b3f64623ac29b90f022. --- test/smoke/src/tests/javascript-debug.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/smoke/src/tests/javascript-debug.ts b/test/smoke/src/tests/javascript-debug.ts index d4a32927bf2..970fa6edabf 100644 --- a/test/smoke/src/tests/javascript-debug.ts +++ b/test/smoke/src/tests/javascript-debug.ts @@ -27,12 +27,12 @@ export function testJavaScriptDebug() { return await app.stop(); }); - // it('autodetects program attribute for launch.json', async function () { - // await jsDebug.openDebugViewlet(); - // await jsDebug.pressConfigureLaunchJson(); - // const value = await jsDebug.getProgramConfigValue(); - // process.platform === 'win32' ? assert.equal(value, '${workspaceRoot}\\bin\\www') : assert.equal(value, '${workspaceRoot}/bin/www'); - // }); + it('autodetects program attribute for launch.json', async function () { + await jsDebug.openDebugViewlet(); + await jsDebug.pressConfigureLaunchJson(); + const value = await jsDebug.getProgramConfigValue(); + process.platform === 'win32' ? assert.equal(value, '${workspaceRoot}\\bin\\www') : assert.equal(value, '${workspaceRoot}/bin/www'); + }); it(`can set a breakpoint and verify if it's set`, async function () { await common.openFirstMatchFile('index.js');