mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-23 15:16:50 +00:00
7ff66a50b0
Change-Id: I6d63fa2d316af296401eaa3dabee10375e73108b
11 lines
294 B
JavaScript
11 lines
294 B
JavaScript
import wait from '../../src/wait';
|
|
|
|
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' );
|
|
} );
|
|
} );
|