Skip to content

Commit

Permalink
ci: enable jest all
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Oct 11, 2023
1 parent ee4f3fa commit c272de0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe(`PrimitiveCalendar`, () => {
const currentItem = getTodayCalendarItem();

expect(currentItem).not.toBeNull();
expect(currentItem.nativeElement.innerHTML).toContain(TODAY);
expect(currentItem.nativeElement.innerHTML.includes(TODAY)).toBeTruthy();
});

it(`is not highlighted if not current month and current year were selected`, () => {
Expand Down

0 comments on commit c272de0

Please sign in to comment.