Skip to content

Commit

Permalink
ci: disable bun-jsc.test.ts 'profile async' on windows for now (#13363)
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro authored Aug 17, 2024
1 parent 33c91fe commit 996847b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/js/bun/jsc/bun-jsc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import {
setTimeZone,
profile,
} from "bun:jsc";
import { isBuildKite, isWindows } from "harness";

describe("bun:jsc", () => {
function count() {
Expand Down Expand Up @@ -172,7 +173,7 @@ describe("bun:jsc", () => {
Bun.gc(true);
});

it("profile async", async () => {
it.todoIf(isBuildKite && isWindows)("profile async", async () => {
const { promise, resolve } = Promise.withResolvers();
const result = await profile(
async function hey(arg1: number) {
Expand Down

0 comments on commit 996847b

Please sign in to comment.