redux-devtools/packages/redux-devtools-inspector-monitor-test-tab
Nathan Bierema 2513c370a6 Publish
- devui@1.0.0-9
 - @redux-devtools/app@1.0.0-7
 - @redux-devtools/cli@1.0.0-8
 - @redux-devtools/inspector-monitor-test-tab@0.7.1
 - @redux-devtools/inspector-monitor-trace-tab@0.2.1
 - @redux-devtools/inspector-monitor@1.0.0
 - @redux-devtools/slider-monitor@2.0.0-8
 - slider-todomvc@0.1.2
2021-06-10 22:41:29 -04:00
..
demo chore(*): make more packages scoped (#692) 2020-12-21 15:46:28 -05:00
src fix(*): fix Select types and usages (#724) 2021-06-07 00:54:05 -04:00
test chore(redux-devtools): move to scoped package (#691) 2020-12-21 09:08:08 -05:00
.babelrc chore(test): rename test-generator to test-tab (#649) 2020-10-04 00:01:46 -04:00
.eslintignore chore(test): rename test-generator to test-tab (#649) 2020-10-04 00:01:46 -04:00
.eslintrc.js chore(test): rename test-generator to test-tab (#649) 2020-10-04 00:01:46 -04:00
CHANGELOG.md Publish 2021-06-10 22:41:29 -04:00
jest.config.js chore(test): rename test-generator to test-tab (#649) 2020-10-04 00:01:46 -04:00
LICENSE.md chore(test): rename test-generator to test-tab (#649) 2020-10-04 00:01:46 -04:00
package.json Publish 2021-06-10 22:41:29 -04: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