Skip to content

Commit

Permalink
fix: debug on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed May 18, 2024
1 parent ee3d290 commit c584fb6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Playwright Test for VSCode",
"description": "%description%",
"icon": "images/playwright-logo.png",
"version": "1.1.3",
"version": "1.1.4",
"publisher": "ms-playwright",
"repository": "https://github.com/microsoft/playwright-vscode",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/playwrightTestServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class PlaywrightTestServer {
async debugTests(items: vscodeTypes.TestItem[], runOptions: PlaywrightTestRunOptions, reporter: reporterTypes.ReporterV2, token: vscodeTypes.CancellationToken): Promise<void> {
// Important, VSCode will change c:\\ to C:\\ in the program argument.
// This forks globals into 2 worlds.
const configFile = path.resolve(this._model.config.workspaceFolder, this._model.config.configFile);
const configFile = path.relative(this._model.config.workspaceFolder, this._model.config.configFile);
const args = ['test-server', '-c', configFile];

const addressPromise = new Promise<string>(f => {
Expand Down

0 comments on commit c584fb6

Please sign in to comment.