open-consul/ui-v2/tests/unit/utils/get-component-factory-test.js

11 lines
325 B
JavaScript
Raw Normal View History

import getComponentFactory from 'consul-ui/utils/get-component-factory';
import { module, test } from 'qunit';
module('Unit | Utility | get component factory');
// Replace this with your real tests.
test('it works', function(assert) {
let result = getComponentFactory({ lookup: function() {} });
assert.ok(result);
});