ci: run modified tests first (#24463)

Co-authored-by: Meghan Denny <meghan@bun.com>
This commit is contained in:
Michael H
2025-11-08 16:49:58 +11:00
committed by GitHub
parent b9b07172aa
commit b131639cc5
2 changed files with 22 additions and 1 deletions

View File

@@ -28,7 +28,7 @@ describe("console depth", () => {
function normalizeOutput(output: string): string {
// Normalize line endings and trim whitespace
return output.replace(/\r\n/g, "\n").replace(/\r/g, "\n").trim();
return output.replace(/\r\n?/g, "\n").trim();
}
test("default console depth should be 2", async () => {