mirror of https://github.com/status-im/consul.git
11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
|
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);
|
||
|
});
|