4.0.0 • Published 5 months ago

@redux-devtools/inspector-monitor-test-tab v4.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

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

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

4.0.0

5 months ago

3.0.0

5 months ago

2.1.0

5 months ago

1.0.1

9 months ago

2.0.1

6 months ago

2.0.0

9 months ago

1.0.0

2 years ago

0.8.6

2 years ago

0.8.5

2 years ago

0.8.4

2 years ago

0.8.1

2 years ago

0.8.0

2 years ago

0.8.3

2 years ago

0.7.4

2 years ago

0.8.2

2 years ago

0.7.3

3 years ago

0.7.2

3 years ago

0.7.1

3 years ago

0.7.0

3 years ago

0.6.3

3 years ago