X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=test%2Fsrc%2Fdb%2Fbase.js;h=786365722b13880f698b4f46184b3d4f3749bda2;hb=4f64b8910e1295207a42c757cb81c9b0e9ee3be2;hp=18871f43e7dbcbb1b4c7da059e624026b37b4e41;hpb=6013420158d848f6411a7210585d107191fc5ee7;p=websub-hub diff --git a/test/src/db/base.js b/test/src/db/base.js index 18871f4..7863657 100644 --- a/test/src/db/base.js +++ b/test/src/db/base.js @@ -108,7 +108,7 @@ describe('DatabaseBase', function () { }); }); // _ensureTypes - describe('schemaCheck', function () { + describe('initialize', function () { let currentSchema; beforeEach(function () { currentSchema = { @@ -123,7 +123,7 @@ describe('DatabaseBase', function () { sinon.stub(db, '_currentSchema').resolves(currentSchema); }); it('covers success', async function () { - await db.schemaCheck(); + await db.initialize(); }); it('covers failure', async function() { db.schemaVersionsSupported = { @@ -139,13 +139,13 @@ describe('DatabaseBase', function () { }, }; try { - await db.schemaCheck(); + await db.initialize(); assert.fail('did not get expected exception'); } catch (e) { assert(e instanceof DBErrors.MigrationNeeded); } }); - }); // schemaCheck + }); // initialize describe('_topicDefaults', function () { let topic;