1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-10 21:30:06 +02:00

adding notification test

This commit is contained in:
Alex Windett 2016-11-28 18:05:07 +00:00
parent bce2e8fc01
commit 12e59cae1e

View File

@ -113,3 +113,9 @@ test('renders <Pagination> without exploding', (t) => {
const wrapper = shallow(<Pagination />);
t.deepEqual(wrapper.length, 1);
});
test('renders <Notification> without exploding', (t) => {
const Pagination = require('../src/components/notification');
const wrapper = shallow(<Pagination />);
t.deepEqual(wrapper.length, 1);
});