mirror of https://github.com/status-im/consul.git
24 lines
657 B
JavaScript
24 lines
657 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import maybeCall from 'consul-ui/utils/maybe-call';
|
|
import { module, test } from 'qunit';
|
|
import { Promise } from 'rsvp';
|
|
|
|
module('Unit | Utility | maybe-call', function () {
|
|
test('it calls a function when the resolved value is true', function (assert) {
|
|
assert.expect(1);
|
|
return maybeCall(() => {
|
|
assert.ok(true);
|
|
}, Promise.resolve(true))();
|
|
});
|
|
test("it doesn't call a function when the resolved value is false", function (assert) {
|
|
assert.expect(0);
|
|
return maybeCall(() => {
|
|
assert.ok(true);
|
|
}, Promise.resolve(false))();
|
|
});
|
|
});
|