mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-06-03 21:59:36 -04:00
34 lines
852 B
TypeScript
34 lines
852 B
TypeScript
import { vi } from "vitest";
|
|
|
|
process.env.BASE_URL = "http://localhost:3000";
|
|
process.env.TRUSTED_ORIGINS = "http://localhost:3000";
|
|
|
|
vi.mock(import("@zerobyte/core/node"), async () => {
|
|
const utils = await vi.importActual<typeof import("@zerobyte/core/node")>("@zerobyte/core/node");
|
|
|
|
return {
|
|
...utils,
|
|
logger: {
|
|
debug: () => {},
|
|
info: () => {},
|
|
warn: () => {},
|
|
error: () => {},
|
|
},
|
|
};
|
|
});
|
|
|
|
vi.mock(import("~/server/utils/crypto"), async () => {
|
|
const cryptoModule = await vi.importActual<typeof import("~/server/utils/crypto")>("~/server/utils/crypto");
|
|
|
|
return {
|
|
...cryptoModule,
|
|
cryptoUtils: {
|
|
...cryptoModule.cryptoUtils,
|
|
deriveSecret: async () => "test-secret",
|
|
sealSecret: async (v: string) => v,
|
|
resolveSecret: async (v: string) => v,
|
|
generateResticPassword: () => "test-restic-password",
|
|
},
|
|
};
|
|
});
|