mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
### What does this PR do? ### How did you verify your code works? --------- Co-authored-by: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
16 lines
408 B
TypeScript
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 * 90,
|
|
},
|
|
);
|
|
});
|