Skip to content

Commit

Permalink
Remove hasCalendarEventStarted flaky test (#5603)
Browse files Browse the repository at this point in the history
Remove hasCalendarEventStarted flaky test
  • Loading branch information
bosiraphael authored May 27, 2024
1 parent 2f52e0f commit 1715aa8
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,6 @@ describe('hasCalendarEventStarted', () => {
expect(result).toBe(true);
});

it('returns false for an event if start date is now', () => {
// Given
const startsAt = new Date().toISOString();

// When
const result = hasCalendarEventStarted({ startsAt });

// Then
expect(result).toBe(false);
});

it('returns false for an event with a future start date', () => {
// Given
const startsAt = addHours(new Date(), 1).toISOString();
Expand Down

0 comments on commit 1715aa8

Please sign in to comment.