Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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
fix: TT-325 Fix wront Test in calendar component (#741)
  • Loading branch information
jcalarcon98 authored Aug 30, 2021
commit cfef7776dbdf36cf5ee5758ffd49d6be212a3fee
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ describe('CalendarComponent', () => {

it('set true in nextDateDisabled when call navigationEnable and calendarView == Month and currentDate equal to initialDate', () => {
component.currentDate = moment().toDate();
component.initialDate = moment().add(2, 'day').toDate();
component.initialDate = moment().toDate();

component.navigationEnable(CalendarView.Month);

Expand Down