redux-devtools/packages/redux-devtools-inspector-monitor-test-tab
Nathan Bierema bae386959d Publish
- remotedev-redux-devtools-extension@3.0.4
 - @redux-devtools/app@2.0.3
 - @redux-devtools/cli@1.0.4
 - @redux-devtools/inspector-monitor-test-tab@0.8.3
 - @redux-devtools/remote@0.7.2
 - @redux-devtools/rtk-query-monitor@2.0.2
 - @redux-devtools/slider-monitor@3.0.2
 - @redux-devtools/ui@1.1.1
 - test-demo@0.1.6
 - rtk-query-demo@0.1.5
 - slider-todomvc@0.1.7
2022-01-20 09:41:49 -05:00
..
demo Publish 2022-01-20 09:41:49 -05:00
src Add ESM builds (#997) 2022-01-10 15:41:53 +00:00
test Replace enzyme with React testing library in trace-tab (#916) 2021-10-22 00:43:15 +00:00
.babelrc Add ESM builds (#997) 2022-01-10 15:41:53 +00:00
.eslintignore Add ESM builds (#997) 2022-01-10 15:41:53 +00:00
.eslintrc.js Add ESM builds (#997) 2022-01-10 15:41:53 +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 Publish 2022-01-20 09:41:49 -05:00
README.md Add ESM builds (#997) 2022-01-10 15:41:53 +00:00
rollup.config.js Add ESM builds (#997) 2022-01-10 15:41:53 +00: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 { TestTab, reduxMochaTemplate } from '@redux-devtools/inspector-monitor-test-tab'; // If using default tests.

const testComponent = (props) => (
  <TestTab
    expect={reduxMochaTemplate.expect} wrap={reduxMochaTemplate.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