Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
751 B

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