From 12e59cae1e5ac3211ba11252ee16bfb5b78cd8b9 Mon Sep 17 00:00:00 2001 From: Alex Windett Date: Mon, 28 Nov 2016 18:05:07 +0000 Subject: [PATCH] adding notification test --- ui/test/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/test/index.js b/ui/test/index.js index 4d99225b..292f6a2e 100644 --- a/ui/test/index.js +++ b/ui/test/index.js @@ -113,3 +113,9 @@ test('renders without exploding', (t) => { const wrapper = shallow(); t.deepEqual(wrapper.length, 1); }); + +test('renders without exploding', (t) => { + const Pagination = require('../src/components/notification'); + const wrapper = shallow(); + t.deepEqual(wrapper.length, 1); +});