Fix e2e test paths

This commit is contained in:
Chris Estreich 2025-02-28 21:40:47 -08:00
parent 481d613bc8
commit e009d5f14c
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ import { defineConfig } from '@vscode/test-cli';
export default defineConfig({
label: 'integrationTest',
files: 'out/e2e/src/suite/**/*.test.js',
files: 'out/suite/**/*.test.js',
workspaceFolder: '.',
mocha: {
ui: 'tdd',

View file

@ -7,7 +7,7 @@
"compile": "tsc -p tsconfig.json",
"lint": "eslint src --ext ts",
"check-types": "tsc --noEmit",
"test": "npm run compile && npx dotenvx run -f .env.integration -- node ./out/e2e/src/runTest.js",
"test": "npm run compile && npx dotenvx run -f .env.integration -- node ./out/runTest.js",
"ci": "npm run build && npm run test"
},
"dependencies": {},

View file

@ -6,7 +6,7 @@ async function main() {
try {
// The folder containing the Extension Manifest package.json
// Passed to `--extensionDevelopmentPath`
const extensionDevelopmentPath = path.resolve(__dirname, "../../../../")
const extensionDevelopmentPath = path.resolve(__dirname, "../../")
// The path to the extension test script
// Passed to --extensionTestsPath