Skip to content

Commit 810d0ca

Browse files
committed
Lint (3)
1 parent d299f48 commit 810d0ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/replayMode.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ describe('ReplayMode', () => {
9494

9595
const msg = await Promise.race([
9696
new Promise((r) => {
97-
chart.onReplayEnd(() => void r('Replay end'));
97+
chart.onReplayEnd(() => r('Replay end'));
9898
}),
9999
new Promise((r) => {
100-
setTimeout(() => void r('Timeout'), 9000);
100+
setTimeout(() => r('Timeout'), 9000);
101101
}),
102102
]);
103103

0 commit comments

Comments
 (0)