Fixes flakey test: it should resolve after waiting

Change-Id: I6d63fa2d316af296401eaa3dabee10375e73108b
This commit is contained in:
Jon Robson 2023-05-09 10:43:25 -07:00
parent ec4858119f
commit 7ff66a50b0

View file

@ -5,6 +5,6 @@ QUnit.module( 'ext.popups/wait' );
QUnit.test( 'it should resolve after waiting', function ( assert ) {
const then = Date.now();
return wait( 150 ).then( () => {
assert.true( ( Date.now() - then ) > 150, 'It waits for the given duration' );
assert.true( ( Date.now() - then ) >= 150, 'It waits for the given duration' );
} );
} );