32 lines
985 B
JavaScript
32 lines
985 B
JavaScript
const {models} = require('vn-loopback/server/server');
|
|
const LoopBackContext = require('loopback-context');
|
|
|
|
describe('getStarredModules()', () => {
|
|
const activeCtx = {
|
|
accessToken: {userId: 9},
|
|
http: {
|
|
req: {
|
|
headers: {origin: 'http://localhost'}
|
|
}
|
|
}
|
|
};
|
|
const ctx = {req: activeCtx};
|
|
|
|
beforeEach(() => {
|
|
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
|
active: activeCtx
|
|
});
|
|
});
|
|
|
|
it(`should return the starred modules for a given user`, async() => {
|
|
const newStarred = await models.StarredModule.create({workerFk: 9, moduleFk: 'customer', position: 1});
|
|
const starredModules = await models.StarredModule.getStarredModules(ctx);
|
|
|
|
expect(starredModules.length).toEqual(1);
|
|
expect(starredModules[0].moduleFk).toEqual('customer');
|
|
|
|
// restores
|
|
await models.StarredModule.destroyById(newStarred.id);
|
|
});
|
|
});
|