mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
fix(Bun.SQL) fix timers test and disable describeWithContainer on macos (#22382)
### What does this PR do? Actually run the Timer/TimerZ tests in CI and disable describeWithContainer in macos ### How did you verify your code works? CI --------- Co-authored-by: Claude Bot <claude-bot@bun.sh> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
@@ -906,7 +906,7 @@ export async function describeWithContainer(
|
||||
return;
|
||||
}
|
||||
const { arch, platform } = process;
|
||||
if ((archs && !archs?.includes(arch)) || platform === "win32") {
|
||||
if ((archs && !archs?.includes(arch)) || platform === "win32" || platform === "darwin") {
|
||||
test.skip(`docker image is not supported on ${platform}/${arch}, skipped: ${image}`, () => {});
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user