Files
bun.sh/test/js/bun/shell/shell-load.test.ts
Jarred Sumner a3fcfd3963 Bump WebKit (#22145)
### 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>
2025-08-26 17:38:15 -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 * 90,
},
);
});