Skip to content

Commit 3e3d17a

Browse files
committed
includes
1 parent 929fed3 commit 3e3d17a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/fourslash/_scripts/updateFailing.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ async function main() {
7373
const outputs = testOutputs.get(event.Test) || [];
7474

7575
// Check if this is a crashing test (contains InternalError)
76-
const hasCrash = outputs.some(line => /InternalError/.test(line));
76+
const hasCrash = outputs.some(line => line.includes("InternalError"));
7777
if (hasCrash) {
7878
crashingTests.push(event.Test);
7979
}

0 commit comments

Comments
 (0)