Files
bun.sh/test/js/bun/http/hspec.test.ts

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);
});