From 8ccb0d93cdc064776454c929e15aa03129be37a3 Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Fri, 11 May 2018 10:46:24 -0400 Subject: clean up --- frontend/__tests__/CartCount.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'frontend/__tests__/CartCount.test.js') diff --git a/frontend/__tests__/CartCount.test.js b/frontend/__tests__/CartCount.test.js index 6786a86..dcb9ca8 100644 --- a/frontend/__tests__/CartCount.test.js +++ b/frontend/__tests__/CartCount.test.js @@ -5,15 +5,15 @@ import CartCount from '../components/CartCount'; describe('', () => { it('renders okay', () => { - shallow(); + shallow(); }); it('matches snapshot', () => { - const wrapper = shallow(); + const wrapper = shallow(); expect(toJSON(wrapper)).toMatchSnapshot(); }); it('updates via props', () => { - const wrapper = mount(); + const wrapper = mount(); expect(toJSON(wrapper)).toMatchSnapshot(); wrapper.setProps({ count: 10 }); expect(toJSON(wrapper)).toMatchSnapshot(); -- cgit v1.3