Skip to content

Commit ba75b98

Browse files
committed
fix 11
1 parent 5620331 commit ba75b98

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ jobs:
128128
command: |
129129
cd tests/e2e/dist && export TEST_FILES=$(circleci tests glob "tests/**/*.js" | circleci tests split --split-by=timings)
130130
echo "Running tests: $TEST_FILES"
131-
cd ../../.. .circleci/e2e/test.app.sh
131+
cd ../../../..
132+
.circleci/e2e/test.app.sh
132133
- when:
133134
condition:
134135
equal: [ true, << parameters.report >> ]

tests/e2e/src/vscode.runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import { VScodeScripts } from './helpers/scripts/vscodeScripts'
5858
console.log('Test Files to run: ', process.env.TEST_FILES)
5959
// Run tests
6060
await exTester.runTests(
61-
[process.env.TEST_FILES ||
61+
process.env.TEST_FILES || [
6262
path.join(__dirname, '..', 'dist', 'tests', 'setup.js'),
6363
path.join(__dirname, '..', 'dist', 'tests', '**', '*.js'),
6464
],

0 commit comments

Comments
 (0)