Skip to content

Commit fbb499a

Browse files
committed
test(calendar): fix build #6453
1 parent 4290ec0 commit fbb499a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

projects/igniteui-angular/src/lib/calendar/calendar.component.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,8 @@ describe('IgxCalendar - ', () => {
11581158
}));
11591159

11601160
it('Should be able to set disabled and active dates as @Input', () => {
1161-
expect(calendar.specialDates).toEqual([{type: DateRangeType.Between, dateRange: [new Date(2017, 5, 1), new Date(2017, 5, 6)]}]);
1161+
expect(calendar.specialDates).toEqual(
1162+
[{type: DateRangeType.Between, dateRange: [new Date(2017, 5, 1), new Date(2017, 5, 6)]}]);
11621163
expect(calendar.disabledDates).toEqual(
11631164
[{type: DateRangeType.Between, dateRange: [new Date(2017, 5, 23), new Date(2017, 5, 29)]}]);
11641165
let specialDates = calendar.daysView.dates.toArray().filter(d => {

0 commit comments

Comments
 (0)