We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 929fed3 commit 3e3d17aCopy full SHA for 3e3d17a
internal/fourslash/_scripts/updateFailing.mts
@@ -73,7 +73,7 @@ async function main() {
73
const outputs = testOutputs.get(event.Test) || [];
74
75
// Check if this is a crashing test (contains InternalError)
76
- const hasCrash = outputs.some(line => /InternalError/.test(line));
+ const hasCrash = outputs.some(line => line.includes("InternalError"));
77
if (hasCrash) {
78
crashingTests.push(event.Test);
79
}
0 commit comments