diff --git a/ui/test/index.js b/ui/test/index.js index 235ad943..61458643 100644 --- a/ui/test/index.js +++ b/ui/test/index.js @@ -40,4 +40,52 @@ test('renders without exploding', (t) => { const Container = require('../src/components/container'); const wrapper = shallow(); t.deepEqual(wrapper.length, 1); -}); \ No newline at end of file +}); + +test('renders without exploding', (t) => { + const Icon = require('../src/components/icon'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +}); + +test('renders without exploding', (t) => { + const Radio = require('../src/components/radio'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +}); + +test('renders without exploding', (t) => { + const RadioGroup = require('../src/components/radio-group'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +}); + +test('renders without exploding', (t) => { + const Row = require('../src/components/row'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +}); + +test('renders without exploding', (t) => { + const Tab = require('../src/components/tab'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +}); + +test('renders without exploding', (t) => { + const Tabs = require('../src/components/tabs'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +}); + +test('renders without exploding', (t) => { + const Toggle = require('../src/components/toggle'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +}); + +test('renders without exploding', (t) => { + const Widget = require('../src/components/widget'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +});