0.6.2 • Published 5 years ago

redux-devtools-test-generator v0.6.2

Weekly downloads
767
License
MIT
Repository
github
Last release
5 years ago

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

NameDescription
assertionString template or function with an object argument containing action, prevState, curState keys, which returns a string representing the assertion (see the function or template).
wrapOptional string template or function which gets assertions argument and returns a string (see the example function or template).
useCodemirrorBoolean. If specified will use codemirror styles.
themeString. Name of the codemirror theme.

License

MIT

0.6.2

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.1

8 years ago

0.5.0

8 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.2.0-alpha-7

9 years ago

0.2.0-alpha-6

9 years ago

0.2.0-alpha-5

9 years ago

0.2.0-alpha-4

9 years ago

0.2.0-alpha-3

9 years ago

0.2.0-alpha-2

9 years ago

0.2.0-alpha-1

9 years ago

0.1.0

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago