From 8446a00872c973af31a112591f4d9eec556fa27c Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Sat, 30 Jul 2022 23:24:57 -0500 Subject: [PATCH] rename action creator test --- squarenotsquare/__tests__/Action-Creators-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/squarenotsquare/__tests__/Action-Creators-test.js b/squarenotsquare/__tests__/Action-Creators-test.js index 3aa0404..4f7961e 100644 --- a/squarenotsquare/__tests__/Action-Creators-test.js +++ b/squarenotsquare/__tests__/Action-Creators-test.js @@ -7,7 +7,7 @@ import thunk from 'redux-thunk'; const middlewares = [thunk]; const mockStore = configureMockStore(middlewares); -test('starts redux store', () => { +test('sends action app-init', () => { const localStore = mockStore(); return localStore.dispatch(appInit()) .then( () => {