diff --git a/package-lock.json b/package-lock.json index c33de5824..1f546995e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "playwright", - "version": "1.1.3", + "version": "1.1.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "playwright", - "version": "1.1.3", + "version": "1.1.4", "dependencies": { "@babel/core": "^7.23.2", "@babel/helper-plugin-utils": "^7.22.5", diff --git a/package.json b/package.json index 13511063f..089c64183 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/playwrightTestServer.ts b/src/playwrightTestServer.ts index fd9a0cdbd..83a0a58d6 100644 --- a/src/playwrightTestServer.ts +++ b/src/playwrightTestServer.ts @@ -192,7 +192,7 @@ export class PlaywrightTestServer { async debugTests(items: vscodeTypes.TestItem[], runOptions: PlaywrightTestRunOptions, reporter: reporterTypes.ReporterV2, token: vscodeTypes.CancellationToken): Promise { // 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(f => {