c98130cc08
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
23 lines
751 B
JavaScript
23 lines
751 B
JavaScript
import { module, skip } from 'qunit';
|
|
import test from 'ember-sinon-qunit/test-support/test';
|
|
import promisedTimeout from 'consul-ui/utils/promisedTimeout';
|
|
|
|
module('Unit | Utils | promisedTimeout', function() {
|
|
test('it calls setTimeout with the correct milliseconds', function(assert) {
|
|
const expected = 1000;
|
|
const P = function(cb) {
|
|
cb(function(milliseconds) {
|
|
assert.equal(milliseconds, expected);
|
|
});
|
|
};
|
|
const setTimeoutDouble = function(cb, milliseconds) {
|
|
assert.equal(milliseconds, expected);
|
|
cb();
|
|
return 1;
|
|
};
|
|
const timeout = promisedTimeout(P, setTimeoutDouble);
|
|
timeout(expected, function() {});
|
|
});
|
|
skip('it still clears the interval if there is no callback');
|
|
});
|