Skip to content

Commit

Permalink
test(igx-date-range-picker): empty date #5732
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipata committed Apr 28, 2020
1 parent c1d7297 commit ecd4b95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ describe('IgxDateRangePicker', () => {
expect(dateRange.value.start).toEqual(startDate);
expect(dateRange.value.end).toEqual(endDate);
expect(startInput.nativeElement.value).toEqual(formatFullDate(startDate));
const expectedEndDate = endDate ? formatFullDate(endDate) : '__/__/____';
const expectedEndDate = endDate ? formatFullDate(endDate) : '';
expect(endInput.nativeElement.value).toEqual(expectedEndDate);
}

Expand Down

0 comments on commit ecd4b95

Please sign in to comment.