mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 23:06:49 +01:00
JSON parse launch.json to determine whether program configuration was correctly added.
This commit is contained in:
@@ -31,7 +31,7 @@ export function testJavaScriptDebug() {
|
||||
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"');
|
||||
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 () {
|
||||
|
||||
Reference in New Issue
Block a user