mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
import { expect, test } from "bun:test";
|
|
import { runTests } from "./http-spec.ts";
|
|
|
|
test("https://github.com/uNetworking/h1spec tests pass", async () => {
|
|
const passed = await runTests();
|
|
expect(passed).toBe(true);
|
|
});
|