test setup lackin

This commit is contained in:
2025-09-03 22:04:56 +02:00
parent 869cc07fdd
commit 276c3dd75f
35 changed files with 629 additions and 285 deletions

View File

@@ -0,0 +1,9 @@
import { vi } from "vitest";
import { port } from "test/trpc/server"
vi.mock("~/app/_trpc/GetBaseUrl", () => {
return {
default: vi.fn(() => {
return `http://localhost:${port}`
})
}
})