Skip to content

Commit 9bf3bb5

Browse files
committed
fix: run multi-root e2e in full mock suite
1 parent 6b8ac2d commit 9bf3bb5

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

apps/vscode-e2e/src/runTest.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ function isDeepSeekTargetedRun(testFile?: string, testGrep?: string) {
2727
}
2828

2929
function isMultiRootTargetedRun(testFile?: string, testGrep?: string) {
30-
if (testFile?.toLowerCase().includes("multi-root-read-file-content.test")) {
30+
if (testFile?.toLowerCase().includes("multi-root-read-file-content")) {
31+
return true
32+
}
33+
34+
if (!testFile && !testGrep) {
35+
// The default mocked CI path runs the whole suite, which includes the multi-root repro.
3136
return true
3237
}
3338

0 commit comments

Comments
 (0)