Skip to content

Commit 344bde9

Browse files
committed
fix 18
1 parent 41e71ac commit 344bde9

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('\n').map((file) => {
61+
testFilesEnv = process.env.TEST_FILES.split(' ').map((file) => {
6262
return path.join(__dirname, '..', 'dist', file);
6363
});
6464

0 commit comments

Comments
 (0)