Skip to content

Commit

Permalink
Enable cc test (#14026)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner authored Sep 19, 2024
1 parent 572bcf0 commit 181b872
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/js/bun/ffi/cc.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { describe, expect, it } from "bun:test";
import { expect, it } from "bun:test";
import { bunEnv, bunExe, isWindows } from "harness";
import path from "path";

import { bunExe, bunEnv, isCI } from "harness";

// TODO: we need to install build-essential and apple SDK in CI.
// it can't find includes. It can on machiens with that enabled.
it.todoIf(isCI)("can run a .c file", () => {
it.todoIf(isWindows)("can run a .c file", () => {
const result = Bun.spawnSync({
cmd: [bunExe(), path.join(__dirname, "cc-fixture.js")],
cwd: __dirname,
Expand Down

0 comments on commit 181b872

Please sign in to comment.