mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix e2e test paths
This commit is contained in:
parent
481d613bc8
commit
e009d5f14c
3 changed files with 3 additions and 3 deletions
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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": {},
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue