diff --git a/client/item/src/diary/index.spec.js b/client/item/src/diary/index.spec.js index 559fe3ea48..c5c909ed50 100644 --- a/client/item/src/diary/index.spec.js +++ b/client/item/src/diary/index.spec.js @@ -40,10 +40,13 @@ describe('Item', () => { describe('freeLineIndex()', () => { it(`should call freeLineIndex() and return an index from line with alertLevel 0 and current date`, () => { + let currentDate = new Date(); + currentDate.setDate(currentDate.getDate() + 1); + controller.$scope.model = {data: [ {name: 'My item 1', alertLevel: 3, date: '2018-05-02'}, {name: 'My item 2', alertLevel: 1, date: '2018-05-03'}, - {name: 'My item 3', alertLevel: 0, date: new Date()}] + {name: 'My item 3', alertLevel: 0, date: currentDate}] }; let result = controller.freeLineIndex; @@ -53,15 +56,17 @@ describe('Item', () => { describe('onPreparationLineIndex()', () => { it(`should call onPreparationLineIndex() and return an index from line with alertLevel 1 and isPicked true`, () => { + let currentDate = new Date(); + currentDate.setDate(currentDate.getDate() + 1); controller.$scope.model = {data: [ {name: 'My item 1', alertLevel: 3, isPicked: true, date: '2018-05-02'}, {name: 'My item 3', alertLevel: 1, isPicked: true, date: '2018-05-03'}, {name: 'My item 4', alertLevel: 1, isPicked: false, date: '2018-05-03'}, - {name: 'My item 5', alertLevel: 0, isPicked: false, date: new Date()}] + {name: 'My item 5', alertLevel: 0, isPicked: false, date: currentDate}] }; let result = controller.onPreparationLineIndex; - expect(result).toEqual(1); + expect(result).toEqual(2); }); });