Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TT-107 fix: code cov
  • Loading branch information
scastillo-jp committed Jan 5, 2021
commit 32894ef28fbc40062458457efed22748b08c0125
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ describe('MonthPickerComponent', () => {
it('selectMonth should call selectDate', () => {
component.selectedYear = 2020;
spyOn(component, 'selectDate');
component.selectMonth(10);
expect(component.selectDate).toHaveBeenCalledWith(10, 2020);
component.selectMonth(1);
expect(component.selectDate).toHaveBeenCalledWith(1, 2021);
});

});