File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/replay/test/integration Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ describe('Integration | flush', () => {
260
260
expect ( mockFlush ) . toHaveBeenCalledTimes ( 1 ) ;
261
261
} ) ;
262
262
263
- it ( 'does not flush is session is too short' , async ( ) => {
263
+ it ( 'does not flush if session is too short' , async ( ) => {
264
264
replay . getOptions ( ) . minReplayDuration = 100_000 ;
265
265
266
266
sessionStorage . clear ( ) ;
@@ -282,7 +282,7 @@ describe('Integration | flush', () => {
282
282
expect ( mockSendReplay ) . toHaveBeenCalledTimes ( 0 ) ;
283
283
} ) ;
284
284
285
- it ( 'does not flush is session is too long' , async ( ) => {
285
+ it ( 'does not flush if session is too long' , async ( ) => {
286
286
replay . timeouts . maxSessionLife = 100_000 ;
287
287
jest . setSystemTime ( new Date ( BASE_TIMESTAMP ) ) ;
288
288
You can’t perform that action at this time.
0 commit comments