mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
12 lines
372 B
TypeScript
12 lines
372 B
TypeScript
import { bunEnv, bunExe } from "harness";
|
|
import path from "node:path";
|
|
|
|
test("dev server deinitializes itself", () => {
|
|
Bun.spawnSync({
|
|
cmd: [bunExe(), "test", path.join(import.meta.dir, "fixtures/deinitialization/test.ts")],
|
|
env: bunEnv,
|
|
stdio: ["inherit", "inherit", "inherit"],
|
|
cwd: path.join(import.meta.dir, "fixtures/deinitialization"),
|
|
});
|
|
});
|