mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
scripts/runner.node.mjs: print list of failing tests when run locally (#14571)
This commit is contained in:
@@ -233,8 +233,13 @@ async function runTests() {
|
||||
reportOutputToGitHubAction("failing_tests", markdown);
|
||||
}
|
||||
|
||||
if (!isCI) console.log("-------");
|
||||
if (!isCI) console.log("passing", results.length - failedTests.length, "/", results.length);
|
||||
if (!isCI) {
|
||||
console.log("-------");
|
||||
console.log("passing", results.length - failedTests.length, "/", results.length);
|
||||
for (const { testPath } of failedTests) {
|
||||
console.log("-", testPath);
|
||||
}
|
||||
}
|
||||
return results;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user