Skip to content

Commit 499bbb9

Browse files
committed
fix 23
1 parent c3a5759 commit 499bbb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

5959
let testFilesEnv: string | string[] = process.env.TEST_FILES!
6060
if (process.env.TEST_FILES) {
61-
testFilesEnv = process.env.TEST_FILES.split(' ').map(file => {
61+
testFilesEnv = process.env.TEST_FILES.split('\n').map(file => file.trim()).map((file) => {
6262
return path.join(__dirname, '..', 'dist', file)
6363
})
6464

0 commit comments

Comments
 (0)