mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Fix some stuff
This commit is contained in:
parent
e18bf2b333
commit
3ba4b00355
|
@ -2,13 +2,11 @@ import { combineReducers } from 'redux';
|
|||
import instances from '@redux-devtools/app/lib/reducers/instances';
|
||||
import monitor from '@redux-devtools/app/lib/reducers/monitor';
|
||||
import notification from '@redux-devtools/app/lib/reducers/notification';
|
||||
import test from '@redux-devtools/app/lib/reducers/test';
|
||||
import reports from '@redux-devtools/app/lib/reducers/reports';
|
||||
|
||||
const rootReducer = combineReducers({
|
||||
instances,
|
||||
monitor,
|
||||
test,
|
||||
reports,
|
||||
notification,
|
||||
});
|
||||
|
|
|
@ -4,12 +4,10 @@ import monitor from '@redux-devtools/app/lib/reducers/monitor';
|
|||
import notification from '@redux-devtools/app/lib/reducers/notification';
|
||||
import socket from '@redux-devtools/app/lib/reducers/socket';
|
||||
import reports from '@redux-devtools/app/lib/reducers/reports';
|
||||
import test from '@redux-devtools/app/lib/reducers/test';
|
||||
|
||||
const rootReducer = combineReducers({
|
||||
instances,
|
||||
monitor,
|
||||
test,
|
||||
socket,
|
||||
reports,
|
||||
notification,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
require('@babel/polyfill');
|
||||
global.chrome = require('sinon-chrome');
|
||||
import Enzyme from 'enzyme';
|
||||
import Adapter from 'enzyme-adapter-react-15.4';
|
||||
import Adapter from 'enzyme-adapter-react-16';
|
||||
|
||||
Enzyme.configure({ adapter: new Adapter() });
|
||||
|
|
Loading…
Reference in New Issue
Block a user