mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
10 lines
603 B
TypeScript
10 lines
603 B
TypeScript
import {db, privateDB} from "../../src/databases/databases";
|
|
|
|
describe("dbUpgrade", () => {
|
|
it("Should update the database version when starting the application", async () => {
|
|
const dbVersion = (await db.prepare("get", "SELECT key, value FROM config where key = ?", ["version"])).value;
|
|
const privateVersion = (await privateDB.prepare("get", "SELECT key, value FROM config where key = ?", ["version"])).value;
|
|
if (dbVersion >= 1 && privateVersion >= 1) return;
|
|
else return `Versions are not at least 1. db is ${dbVersion}, private is ${privateVersion}`;
|
|
});
|
|
});
|