[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-02-05 08:05:36 +00:00
committed by GitHub
parent bac9dd5c31
commit 47470e2343

View File

@@ -26,7 +26,9 @@ vi.mock("@dokploy/server/db", () => {
return {
db: {
select: vi.fn(() => chain),
insert: vi.fn(() => ({ values: () => ({ returning: () => Promise.resolve([{}]) }) })),
insert: vi.fn(() => ({
values: () => ({ returning: () => Promise.resolve([{}]) }),
})),
update: vi.fn(() => chain),
delete: vi.fn(() => chain),
query: new Proxy({} as Record<string, typeof tableMock>, {