We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb45a4 commit 31c8562Copy full SHA for 31c8562
apps/webapp/test/runsBackfiller.test.ts
@@ -1,3 +1,11 @@
1
+import { vi } from "vitest";
2
+
3
+// Mock the db prisma client
4
+vi.mock("~/db.server", () => ({
5
+ prisma: {},
6
+ $replica: {},
7
+}));
8
9
import { ClickHouse } from "@internal/clickhouse";
10
import { containerTest } from "@internal/testcontainers";
11
import { z } from "zod";
0 commit comments