lucid-ui
Version:
A UI component library from AppNexus.
14 lines • 468 B
JavaScript
// Selectors Spec file is only necessary if you use the Component Selectors file.
import selectors from './ExampleComponent.selectors';
import assert from 'assert';
var selector = selectors.selector;
describe('ExampleComponent selectors', function () {
describe('Example selector', function () {
it('should return true', function () {
var state = {
number: 2
};
assert.equal(selector(state), true, 'must be a number');
});
});
});