mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-10-15 18:56:07 +08:00
21 lines
705 B
TypeScript
21 lines
705 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import cls from "./cls.js";
|
|
|
|
describe("Migration", () => {
|
|
it("migrates from v214", async () => {
|
|
await new Promise<void>((resolve) => {
|
|
cls.init(async () => {
|
|
await import("../app.js");
|
|
|
|
const sql = (await (import("./sql.js"))).default;
|
|
sql.rebuildIntegrationTestDatabase("spec/db/document_v214.db");
|
|
|
|
const migration = (await import("./migration.js")).default;
|
|
await migration.migrateIfNecessary();
|
|
expect(sql.getValue("SELECT count(*) FROM blobs")).toBe(116);
|
|
resolve();
|
|
});
|
|
});
|
|
}, 60_000);
|
|
});
|