Skip to content

Commit

Permalink
fix: debug on Windows (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored May 18, 2024
1 parent ee3d290 commit 308b053
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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
4 changes: 2 additions & 2 deletions src/playwrightTestServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ 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);
// This forks globals into 2 worlds, hence we specify it relative than absolute.
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 308b053

Please sign in to comment.