mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
11 lines
635 B
TypeScript
11 lines
635 B
TypeScript
import {db, privateDB} from '../../src/databases/databases';
|
|
import {Done} from '../utils';
|
|
|
|
describe('dbUpgrade', () => {
|
|
it('Should update the database version when starting the application', async () => {
|
|
let dbVersion = (await db.prepare('get', 'SELECT key, value FROM config where key = ?', ['version'])).value;
|
|
let 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;
|
|
});
|
|
});
|