const models = require('vn-loopback/server/server').models; describe('MdbApp unlock()', () => { it(`should unlock a mdb `, async() => { const tx = await models.MdbApp.beginTransaction({}); try { const options = {transaction: tx}; const appName = 'bar'; const developerId = 9; const ctx = {req: {accessToken: {userId: developerId}}}; const result = await models.MdbApp.unlock(ctx, appName, options); expect(result.locked).toBeNull(); await tx.rollback(); } catch (e) { await tx.rollback(); } }); });