Skip to content

Commit

Permalink
fix: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Jan 30, 2024
1 parent 7d928a9 commit 4ec2fd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/store.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect } from 'chai';
import { createStore, combineReducers, applyMiddleware } from 'redux';
import ReduxThunk from 'redux-thunk';
import thunk from 'redux-thunk';

import { appReducer, climateWarehouseReducer } from '../src/store/reducers';
import {
Expand Down Expand Up @@ -29,7 +29,7 @@ const rootReducer = combineReducers({
climateWarehouse: climateWarehouseReducer,
});

const store = createStore(rootReducer, applyMiddleware(ReduxThunk));
const store = createStore(rootReducer, applyMiddleware(thunk));

describe('test climateWarehouse store actions', () => {
it('getProjects useMockedResponse', async () => {
Expand Down

0 comments on commit 4ec2fd0

Please sign in to comment.