un-ignore icon component

This commit is contained in:
Sérgio Ramos 2016-10-31 11:12:28 +00:00
parent e33c8e8146
commit 66d82ab84b
1 changed files with 5 additions and 5 deletions

View File

@ -42,11 +42,11 @@ test('renders <Container> without exploding', (t) => {
t.deepEqual(wrapper.length, 1);
});
// test('renders <Icon> without exploding', (t) => {
// const Icon = require('../src/components/icon');
// const wrapper = shallow(<Icon />);
// t.deepEqual(wrapper.length, 1);
// });
test('renders <Icon> without exploding', (t) => {
const Icon = require('../src/components/icon');
const wrapper = shallow(<Icon />);
t.deepEqual(wrapper.length, 1);
});
test('renders <Radio> without exploding', (t) => {
const Radio = require('../src/components/radio');