mediawiki-extensions-Popups/tests/node-qunit/wait.test.js
Ed Sanders 883c8c1aca build: Update eslint-config-wikimedia to 0.22.1
Change-Id: I055517998ed06fccdf50ec31251ea6aa9040abb5
2022-02-28 13:18:24 +00:00

11 lines
293 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' );
} );
} );