Skip to content

Commit

Permalink
Try to fix gh action (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu2301 committed Sep 10, 2023
1 parent d7e2448 commit fe17f7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/replayMode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ describe('ReplayMode', () => {
utils.calculateTimeGap(chart.periods),
).toBe(24 * 60 * 60);

expect(chart.periods.length).toBe(11);
expect(chart.periods.length).toBeGreaterThanOrEqual(10);
expect(chart.periods.length).toBeLessThanOrEqual(11);
});

it('sets market', async () => {
Expand Down

0 comments on commit fe17f7d

Please sign in to comment.