Skip to content

Commit e009d5f

Browse files
committed
Fix e2e test paths
1 parent 481d613 commit e009d5f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

e2e/.vscode-test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { defineConfig } from '@vscode/test-cli';
66

77
export default defineConfig({
88
label: 'integrationTest',
9-
files: 'out/e2e/src/suite/**/*.test.js',
9+
files: 'out/suite/**/*.test.js',
1010
workspaceFolder: '.',
1111
mocha: {
1212
ui: 'tdd',

e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"compile": "tsc -p tsconfig.json",
88
"lint": "eslint src --ext ts",
99
"check-types": "tsc --noEmit",
10-
"test": "npm run compile && npx dotenvx run -f .env.integration -- node ./out/e2e/src/runTest.js",
10+
"test": "npm run compile && npx dotenvx run -f .env.integration -- node ./out/runTest.js",
1111
"ci": "npm run build && npm run test"
1212
},
1313
"dependencies": {},

e2e/src/runTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ async function main() {
66
try {
77
// The folder containing the Extension Manifest package.json
88
// Passed to `--extensionDevelopmentPath`
9-
const extensionDevelopmentPath = path.resolve(__dirname, "../../../../")
9+
const extensionDevelopmentPath = path.resolve(__dirname, "../../")
1010

1111
// The path to the extension test script
1212
// Passed to --extensionTestsPath

0 commit comments

Comments
 (0)