Skip to content

Commit

Permalink
Does this make the tests less flaky (#15399)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner authored Nov 25, 2024
1 parent 468a392 commit 4f8c1c9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/runner.node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -495,11 +495,11 @@ async function spawnBun(execPath, { args, cwd, timeout, env, stdout, stderr }) {
stderr,
});
} finally {
try {
rmSync(tmpdirPath, { recursive: true, force: true });
} catch (error) {
console.warn(error);
}
// try {
// rmSync(tmpdirPath, { recursive: true, force: true });
// } catch (error) {
// console.warn(error);
// }
}
}

Expand Down

0 comments on commit 4f8c1c9

Please sign in to comment.