From acf9020a1720ff7554a8fc709294884998664a03 Mon Sep 17 00:00:00 2001 From: splincode Date: Tue, 10 Oct 2023 22:26:00 +0300 Subject: [PATCH] ci: enable jest all --- .../test/primitive-calendar.component.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/core/components/primitive-calendar/test/primitive-calendar.component.spec.ts b/projects/core/components/primitive-calendar/test/primitive-calendar.component.spec.ts index 0fa6d854a529..341f3a087bf6 100644 --- a/projects/core/components/primitive-calendar/test/primitive-calendar.component.spec.ts +++ b/projects/core/components/primitive-calendar/test/primitive-calendar.component.spec.ts @@ -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`, () => {