Skip to content

Commit 97496cd

Browse files
committed
TT-39 fix: selected Month
1 parent 1ce2bd7 commit 97496cd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/app/modules/shared/components/month-picker/month-picker.component.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,10 @@ describe('MonthPickerComponent', () => {
5757
expect(component.selectedYearMoment.format('Y')).toEqual(decrementYear);
5858
});
5959

60+
fit('selected Month', () => {
61+
spyOn(component, 'selectMonth');
62+
component.selectMonth(8) ;
63+
expect(component.selectMonth).toHaveBeenCalled();
64+
});
65+
6066
});

0 commit comments

Comments
 (0)