mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import { beforeAll } from "bun:test";
|
|
import { migrate } from "~/db";
|
|
|
|
process.env.JWT_SECRET = "this is a secret";
|
|
process.env.JWT_ISSUER = "https://kyoo.zoriya.dev";
|
|
|
|
beforeAll(async () => {
|
|
await migrate();
|
|
});
|