2026-05-14 23:17:57 +07:00
|
|
|
import { describe, expect, it } from "vitest";
|
2026-05-31 15:46:18 +07:00
|
|
|
import { runMigrations } from "../../src/database/migrate";
|
2026-05-14 23:17:57 +07:00
|
|
|
|
2026-05-31 15:46:18 +07:00
|
|
|
describe("runMigrations", () => {
|
|
|
|
|
it("exports the PostgreSQL migration runner", () => {
|
|
|
|
|
expect(runMigrations).toBeTypeOf("function");
|
2026-05-14 23:17:57 +07:00
|
|
|
});
|
|
|
|
|
});
|