Skip to content

Commit

Permalink
fix(debug): use full config file when debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed May 17, 2024
1 parent f5038c4 commit a725f0f
Show file tree
Hide file tree
Showing 3 changed files with 6 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.2",
"version": "1.1.3",
"publisher": "ms-playwright",
"repository": "https://github.com/microsoft/playwright-vscode",
"bugs": {
Expand Down
4 changes: 3 additions & 1 deletion src/playwrightTestServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ export class PlaywrightTestServer {
}

async debugTests(items: vscodeTypes.TestItem[], runOptions: PlaywrightTestRunOptions, reporter: reporterTypes.ReporterV2, token: vscodeTypes.CancellationToken): Promise<void> {
const configFile = path.basename(this._model.config.configFile);
// 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 args = ['test-server', '-c', configFile];

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

0 comments on commit a725f0f

Please sign in to comment.