Skip to content

Commit 033766e

Browse files
mydeabillyvg
andauthored
Apply suggestions from code review
Co-authored-by: Billy Vong <[email protected]>
1 parent 98eeb59 commit 033766e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/replay/test/integration/flush.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ describe('Integration | flush', () => {
260260
expect(mockFlush).toHaveBeenCalledTimes(1);
261261
});
262262

263-
it('does not flush is session is too short', async () => {
263+
it('does not flush if session is too short', async () => {
264264
replay.getOptions().minReplayDuration = 100_000;
265265

266266
sessionStorage.clear();
@@ -282,7 +282,7 @@ describe('Integration | flush', () => {
282282
expect(mockSendReplay).toHaveBeenCalledTimes(0);
283283
});
284284

285-
it('does not flush is session is too long', async () => {
285+
it('does not flush if session is too long', async () => {
286286
replay.timeouts.maxSessionLife = 100_000;
287287
jest.setSystemTime(new Date(BASE_TIMESTAMP));
288288

0 commit comments

Comments
 (0)