Skip to content

Commit 85d3106

Browse files
committed
Try to fix gh action (6)
1 parent fe17f7d commit 85d3106

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/customChartTypes.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ describe('CustomChartTypes', () => {
147147
) await utils.wait(100);
148148

149149
expect(chart.infos.full_name).toBe('BINANCE:ETHEUR');
150-
expect(chart.periods.length).toBeGreaterThanOrEqual(100);
150+
expect(chart.periods.length).toBeGreaterThanOrEqual(99);
151151
expect(chart.periods.length).toBeLessThanOrEqual(101);
152152
});
153153

tests/replayMode.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ describe('ReplayMode', () => {
6565
utils.calculateTimeGap(chart.periods),
6666
).toBe(24 * 60 * 60);
6767

68-
expect(chart.periods.length).toBeGreaterThanOrEqual(10);
68+
expect(chart.periods.length).toBeGreaterThanOrEqual(9);
6969
expect(chart.periods.length).toBeLessThanOrEqual(11);
7070
});
7171

@@ -105,7 +105,7 @@ describe('ReplayMode', () => {
105105
utils.calculateTimeGap(chart.periods),
106106
).toBe(24 * 60 * 60);
107107

108-
expect(chart.periods.length).toBeGreaterThanOrEqual(10);
108+
expect(chart.periods.length).toBeGreaterThanOrEqual(9);
109109
expect(chart.periods.length).toBeLessThanOrEqual(11);
110110
});
111111

0 commit comments

Comments
 (0)