From f9b8dd961f8fe6dbe489af81e2c7c4e27c621e1c Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Thu, 28 Jul 2022 23:13:43 -0500 Subject: [PATCH] remove unused functions --- squarenotsquare/__tests__/Action-Creators-test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/squarenotsquare/__tests__/Action-Creators-test.js b/squarenotsquare/__tests__/Action-Creators-test.js index 7faca6e..93a2832 100644 --- a/squarenotsquare/__tests__/Action-Creators-test.js +++ b/squarenotsquare/__tests__/Action-Creators-test.js @@ -1,11 +1,9 @@ import 'react-native'; -import initStore from '../src/redux/CreateStore'; import {appInit} from '../src/redux/actions/SystemActions'; import { APP_INIT } from '../src/redux/types/SystemTypes'; import configureMockStore from 'redux-mock-store'; import thunk from 'redux-thunk'; -const flushPromises = () => new Promise(setImmediate); const middlewares = [thunk]; const mockStore = configureMockStore(middlewares);