From c29e083479aeeb58bb1551e65b2e688c9fb35da1 Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Sat, 30 Jul 2022 23:24:49 -0500 Subject: [PATCH] redux unit test --- squarenotsquare/__tests__/Redux-test.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 squarenotsquare/__tests__/Redux-test.js diff --git a/squarenotsquare/__tests__/Redux-test.js b/squarenotsquare/__tests__/Redux-test.js new file mode 100644 index 0000000..355ce66 --- /dev/null +++ b/squarenotsquare/__tests__/Redux-test.js @@ -0,0 +1,6 @@ +import configStore from '../src/redux/CreateStore'; + +test('configures redux store', () => { + const configgedStore = configStore; + expect(configgedStore).toEqual(expect.anything()); +}) \ No newline at end of file