mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-16 13:30:23 +01:00
feat: force upgrade scripts for test
This commit is contained in:
@@ -10,4 +10,20 @@ describe('Upgrade', function () {
|
||||
const files = await upgrade.getAll();
|
||||
assert(Array.isArray(files) && files.length > 0);
|
||||
});
|
||||
|
||||
it('should throw error', async function () {
|
||||
let err;
|
||||
try {
|
||||
await upgrade.check();
|
||||
} catch (_err) {
|
||||
err = _err;
|
||||
}
|
||||
assert.equal(err.message, 'schema-out-of-date');
|
||||
});
|
||||
|
||||
it('should run all upgrades', async function () {
|
||||
// for upgrade scripts to run
|
||||
await db.set('schemaDate', 1);
|
||||
await upgrade.run();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user