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', () => {
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
You can’t perform that action at this time.
0 commit comments