Template
1
0

feat: initial commit

This commit is contained in:
2025-04-18 20:18:50 +00:00
commit 7df57522d2
20 changed files with 2094 additions and 0 deletions

14
tests/route.test.ts Normal file
View File

@@ -0,0 +1,14 @@
import { assertEquals } from "@std/assert";
import { describe, it } from "@std/testing/bdd";
import { relay } from "./mocks/relay.ts";
describe("Relay", () => {
it("should create a new user", async () => {
const userId = await relay.post("/users", { name: "John Doe", email: "john.doe@fixture.none" });
console.log({ userId });
assertEquals(typeof userId, "string");
});
});