19 lines
513 B
JavaScript
19 lines
513 B
JavaScript
|
const app = require('vn-loopback/server/server');
|
||
|
|
||
|
describe('department createChild()', () => {
|
||
|
let createdChild;
|
||
|
|
||
|
afterAll(async done => {
|
||
|
await createdChild.destroy();
|
||
|
done();
|
||
|
});
|
||
|
|
||
|
it('should create a new child', async() => {
|
||
|
const parentId = null;
|
||
|
createdChild = await app.models.Department.createChild(parentId, 'My new department');
|
||
|
|
||
|
expect(createdChild.name).toEqual('My new department');
|
||
|
expect(createdChild.parentFk).toBeNull();
|
||
|
});
|
||
|
});
|