Files
bun.sh/test/js/bun/shell/shell-load.test.ts
2025-08-24 23:57:45 -07:00

16 lines
408 B
TypeScript

import { describe, expect, test } from "bun:test";
import { isCI, isWindows } from "harness";
import path from "path";
describe("shell load", () => {
// windows process spawning is a lot slower
test.skipIf(isCI && isWindows)(
"immediate exit",
() => {
expect([path.join(import.meta.dir, "./shell-immediate-exit-fixture.js")]).toRun();
},
{
timeout: 1000 * 15,
},
);
});