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 f66df9c commit 97ecb11Copy full SHA for 97ecb11
internal/fourslash/_scripts/updateFailing.mts
@@ -21,7 +21,7 @@ function main() {
21
const panicRegex = /^panic/m;
22
if (panicRegex.test(testOutput)) {
23
fs.writeFileSync(failingTestsPath, oldFailingTests, "utf-8");
24
- throw new Error("Unrecovered panic detected in tests");
+ throw new Error("Unrecovered panic detected in tests\n" + testOutput);
25
}
26
const failRegex = /--- FAIL: ([\S]+)/gm;
27
const failingTests: string[] = [];
0 commit comments