Skip to content

Commit

Permalink
Fix running tests in vscode with webpack (#1737)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenWeatherford authored Jul 18, 2024
1 parent 67bb02f commit 7bc0947
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
// Launch extension with webpack
{
"name": "Launch Extension (webpack)",
"name": "Launch Extension With Webpack (dev)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
Expand All @@ -86,7 +86,7 @@
},
// Launch tests with webpack
{
"name": "Launch Tests (webpack)",
"name": "Launch Tests With Webpack (dev)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
Expand Down
2 changes: 1 addition & 1 deletion test/testConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// NOTE: This is used by gulp and should avoid referencing other code if possible

import * as path from 'path';
import * as common from '../common';
import * as common from '../extension.bundle';
import { writeToLog } from './support/testLog';

export const DEFAULT_TESTCASE_TIMEOUT_MS = common.DEFAULT_TESTCASE_TIMEOUT_MS;
Expand Down

0 comments on commit 7bc0947

Please sign in to comment.