mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
8 lines
271 B
TypeScript
8 lines
271 B
TypeScript
import { expect, test } from "bun:test";
|
|
import "harness";
|
|
import { fileURLToPath } from "url";
|
|
|
|
test("Subprocess stdout can be used in Bun.serve()", async () => {
|
|
expect([fileURLToPath(import.meta.resolve("./spawn-stream-http-fixture.js"))]).toRun("hello world");
|
|
});
|