mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 09:36:43 +03:00
f4405ac0f0
- d3-state-visualizer@1.3.4 - devui@1.0.0-6 - react-base16-styling@0.8.0 - react-dock@0.3.0 - react-json-tree@0.13.0 - redux-devtools-chart-monitor@1.7.2 - redux-devtools-cli@1.0.0-4 - redux-devtools-core@1.0.0-4 - redux-devtools-dock-monitor@1.2.0 - redux-devtools-inspector@0.14.0 - redux-devtools-instrument@1.10.0 - redux-devtools-log-monitor@2.1.0 - redux-devtools-serialize@0.2.0 - redux-devtools-slider-monitor@2.0.0-5 - redux-devtools-test-generator@0.6.2 - redux-devtools-trace-monitor@0.1.3 - redux-devtools@3.7.0 - d3-state-visualizer-tree-example@0.0.2 - react-json-tree-example@1.1.0 - slider-todomvc@0.0.2 - counter-redux@0.1.0 - todomvc@0.1.0 |
||
---|---|---|
.. | ||
demo/src | ||
src | ||
test | ||
.babelrc | ||
CHANGELOG.md | ||
LICENSE.md | ||
package.json | ||
README.md | ||
webpack.config.js |
Redux DevTools Test Generator
Installation
npm install --save-dev redux-devtools-test-generator
Usage
If you use Redux DevTools Extension, Remote Redux DevTools or RemoteDev, it's already there, and no additional actions required.
With redux-devtools
and redux-devtools-inspector
:
containers/DevTools.js
import React from 'react';
import { createDevTools } from 'redux-devtools';
import Inspector from 'redux-devtools-inspector';
import TestGenerator from 'redux-devtools-test-generator';
import mochaTemplate from 'redux-devtools-test-generator/lib/redux/mocha'; // If using default tests.
const testComponent = (props) => (
<TestGenerator
expect={mochaTemplate.expect} wrap={mochaTemplate.wrap} useCodemirror
{...props}
/>
);
export default createDevTools(
<Inspector
tabs: defaultTabs => [...defaultTabs, { name: 'Test', component: testComponent }]
/>
);
Instead of mochaTemplate.expect
and mochaTemplate.wrap
you can use your function templates.
If useCodemirror
specified, include codemirror/lib/codemirror.css
style and optionally themes from codemirror/theme/
.
Props
Name | Description |
---|---|
assertion |
String template or function with an object argument containing action , prevState , curState keys, which returns a string representing the assertion (see the function or template). |
[wrap ] |
Optional string template or function which gets assertions argument and returns a string (see the example function or template). |
[useCodemirror ] |
Boolean. If specified will use codemirror styles. |
[theme ] |
String. Name of the codemirror theme. |
License
MIT