salix/back/models/specs/account.spec.js

16 lines
492 B
JavaScript
Raw Normal View History

const models = require('vn-loopback/server/server').models;
2018-08-07 10:17:34 +00:00
describe('loopback model Account', () => {
it('should return true if the user has the given role', async() => {
let result = await models.Account.hasRole(1, 'employee');
2018-08-07 10:17:34 +00:00
expect(result).toBeTruthy();
});
it('should return false if the user doesnt have the given role', async() => {
let result = await models.Account.hasRole(1, 'administrator');
2018-08-07 10:17:34 +00:00
expect(result).toBeFalsy();
});
});