这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ Tests are written using [Cypress](https://www.cypress.io/).
You can use the [Redux DevTools Extension](http://extension.remotedev.io/) to inspect and debug the Redux store.
It should automatically connect to the Redux store when started in development mode.

By default [redux-logger](https://www.npmjs.com/package/redux-logger) is enabled to assist in development.
You can disable it if you wish by commenting out the `createLogger` line in `src/client.js`

### Run Tests

- Run tests: `npm run cypress`
Expand Down
2 changes: 1 addition & 1 deletion console/src/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ if (__DEVELOPMENT__) {
applyMiddleware(
thunk,
routerMiddleware(browserHistory),
createLogger(),
createLogger({ diff: true, duration: true }),
analyticsLogger
),
require('redux-devtools').persistState(
Expand Down