redux-devtools/packages/redux-devtools-inspector-monitor-test-tab
2021-12-08 03:27:14 +00:00
..
demo Remove unnecessary @types/webpack (#980) 2021-12-08 03:27:14 +00:00
src chore(*): rename devui to redux-devtools-ui (#868) 2021-09-18 14:00:58 +00:00
test Replace enzyme with React testing library in trace-tab (#916) 2021-10-22 00:43:15 +00:00
.babelrc chore(*): clean up babel configs (#816) 2021-08-29 23:25:48 +00:00
.eslintignore chore(test-tab): fix demo build (#891) 2021-09-25 04:54:14 +00:00
.eslintrc.js chore(*): move devDependencies back to packages (#870) 2021-09-18 23:47:03 +00:00
CHANGELOG.md chore(*): run prettier 2021-06-10 23:42:46 -04:00
jest.config.js Replace enzyme with React testing library in test-tab (#915) 2021-10-21 21:55:21 +00:00
LICENSE.md chore(test): rename test-generator to test-tab (#649) 2020-10-04 00:01:46 -04:00
package.json fix(deps): update all non-major dependencies (#967) 2021-12-04 19:04:59 +00:00
README.md chore(*): make more packages scoped (#692) 2020-12-21 15:46:28 -05:00
tsconfig.json chore(test): rename test-generator to test-tab (#649) 2020-10-04 00:01:46 -04:00

Redux DevTools Test Generator

Installation

yarn add @redux-devtools/inspector-monitor-test-tab

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-monitor:

containers/DevTools.js
import React from 'react';
import { createDevTools } from '@redux-devtools/core';
import InspectorMonitor from '@redux-devtools/inspector-monitor';
import TestGenerator from '@redux-devtools/inspector-monitor-test-tab';
import mochaTemplate from '@redux-devtools/inspector-monitor-test-tab/lib/redux/mocha'; // If using default tests.

const testComponent = (props) => (
  <TestGenerator
    expect={mochaTemplate.expect} wrap={mochaTemplate.wrap} useCodemirror
    {...props}
  />
);

export default createDevTools(
  <InspectorMonitor
    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