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:
Ciro Spaciari
2025-09-03 17:36:03 -07:00
committed by GitHub
parent e1de7563e1
commit 60ab798991
3 changed files with 184 additions and 200 deletions

View File

@@ -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;
}