2019-09-26 07:05:18 +00:00
|
|
|
const app = require('vn-loopback/server/server');
|
|
|
|
|
|
|
|
describe('sale updateConcept()', () => {
|
|
|
|
const saleId = 1;
|
|
|
|
let originalSale;
|
|
|
|
|
|
|
|
beforeAll(async done => {
|
|
|
|
originalSale = await app.models.Sale.findById(saleId);
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async done => {
|
|
|
|
await originalSale.save();
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should throw if ID was undefined', async() => {
|
2019-09-30 11:02:11 +00:00
|
|
|
let err;
|
2019-09-26 07:05:18 +00:00
|
|
|
const newConcept = 'I am he new concept';
|
|
|
|
|
2019-09-30 11:02:11 +00:00
|
|
|
try {
|
|
|
|
await app.models.Sale.updateConcept(undefined, newConcept);
|
|
|
|
} catch (e) {
|
|
|
|
err = e;
|
|
|
|
}
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2019-09-30 11:02:11 +00:00
|
|
|
expect(err).toBeDefined();
|
2019-09-26 07:05:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should update the sale concept', async() => {
|
|
|
|
const newConcept = 'I am the new concept';
|
|
|
|
|
|
|
|
let response = await app.models.Sale.updateConcept(saleId, newConcept);
|
|
|
|
|
|
|
|
expect(response.concept).toEqual(newConcept);
|
|
|
|
});
|
|
|
|
});
|