11 lines
376 B
JavaScript
11 lines
376 B
JavaScript
const app = require('vn-loopback/server/server');
|
|
|
|
describe('userConfig getUserConfig()', () => {
|
|
it(`should return the configuration data of a given user`, async() => {
|
|
await app.models.UserConfig.getUserConfig({req: {accessToken: {userId: 9}}})
|
|
.then(response => {
|
|
expect(response.warehouseFk).toEqual(1);
|
|
});
|
|
});
|
|
});
|