Make it possible to have test data in cli-integration

This will now reload any files that live in `src/vscode-tests/*/data`.
This commit is contained in:
Elena Tanasoiu
2022-11-03 09:35:25 +00:00
parent 8e7fa4f1d6
commit abfd1e2e83

View File

@@ -7,7 +7,7 @@ export function copyTestData() {
}
export function watchTestData() {
return gulp.watch(['src/vscode-tests/no-workspace/data/**/*', 'src/vscode-tests/minimal-workspace/data/**/*'], copyTestData);
return gulp.watch(['src/vscode-tests/*/data/**/*'], copyTestData);
}
function copyNoWorkspaceData() {