mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
37 lines
920 B
TypeScript
37 lines
920 B
TypeScript
import { beforeAll, expect, setDefaultTimeout, test } from "bun:test";
|
|
import fs from "fs/promises";
|
|
import { bunEnv, bunExe, tmpdirSync } from "../../harness";
|
|
|
|
const tmpdir = tmpdirSync();
|
|
|
|
beforeAll(async () => {
|
|
setDefaultTimeout(1000 * 60 * 4);
|
|
await fs.rm(tmpdir, { recursive: true, force: true });
|
|
await fs.cp(import.meta.dir, tmpdir, { recursive: true, force: true });
|
|
});
|
|
|
|
test("expo export works (no ajv issues)", async () => {
|
|
console.log({ tmpdir });
|
|
let { exitCode } = Bun.spawnSync([bunExe(), "install"], {
|
|
stderr: "inherit",
|
|
stdout: "inherit",
|
|
cwd: tmpdir,
|
|
env: bunEnv,
|
|
});
|
|
expect(exitCode).toBe(0);
|
|
|
|
({ exitCode } = Bun.spawnSync([bunExe(), "run", "export"], {
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
stdin: "inherit",
|
|
cwd: tmpdir,
|
|
env: {
|
|
...bunEnv,
|
|
PORT: "0",
|
|
},
|
|
}));
|
|
|
|
// just check exit code for now
|
|
expect(exitCode).toBe(0);
|
|
});
|