Skip to content

Commit 7bc3628

Browse files
committed
Fixed file paths
1 parent ed7d59c commit 7bc3628

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.vscode/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
"runtimeExecutable": "${execPath}",
3131
"args": [
3232
"--extensionDevelopmentPath=${workspaceRoot}",
33-
"--extensionTestsPath=${workspaceRoot}/client/out/test/index",
34-
"${workspaceRoot}/client/testFixture"
33+
"--extensionTestsPath=${workspaceRoot}/dist/client/out/test/index",
34+
"${workspaceRoot}/test/fixtures"
3535
],
36-
"outFiles": ["${workspaceRoot}/client/out/test/**/*.js"]
36+
"outFiles": ["${workspaceRoot}/dist/client/out/test/**/*.js"]
3737
},
3838
{
3939
"name": "Debug ANTLR4 grammar",

scripts/e2e.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
$ENV:CODE_TESTS_PATH="$(Get-Location)\client\out\test"
2-
$ENV:CODE_TESTS_WORKSPACE="$(Get-Location)\client\testFixture"
3-
Invoke-Expression "node $(Get-Location)\client\out\test\runTest.js"
1+
$ENV:CODE_TESTS_PATH="$(Get-Location)\dist\client\out\test"
2+
$ENV:CODE_TESTS_WORKSPACE="$(Get-Location)\test\fixtures"
3+
Invoke-Expression "node $(Get-Location)\dist\client\out\test\runTest.js"

scripts/e2e.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
export CODE_TESTS_PATH="$(pwd)/client/out/test"
4-
export CODE_TESTS_WORKSPACE="$(pwd)/client/testFixture"
3+
export CODE_TESTS_PATH="$(pwd)/dist/client/out/test"
4+
export CODE_TESTS_WORKSPACE="$(pwd)/test/fixtures"
55

6-
node "$(pwd)/client/out/test/runTest"
6+
node "$(pwd)/dist/client/out/test/runTest"

0 commit comments

Comments
 (0)