Gathering detailed insights and metrics for redux-devtools-test-generator
Gathering detailed insights and metrics for redux-devtools-test-generator
Gathering detailed insights and metrics for redux-devtools-test-generator
Gathering detailed insights and metrics for redux-devtools-test-generator
DevTools for Redux with hot reloading, action replay, and customizable UI
npm install redux-devtools-test-generator
Typescript
Module System
Node Version
NPM Version
Redux DevTools Extension v3.2.10
Updated on Apr 03, 2025
Redux DevTools Extension v3.2.7
Updated on Sep 21, 2024
Redux DevTools Extension v3.2.6
Updated on Sep 20, 2024
Redux DevTools Extension v3.2.5
Updated on Sep 16, 2024
Redux DevTools Extension v3.2.4
Updated on Sep 04, 2024
Redux DevTools Extension v3.2.3
Updated on Aug 31, 2024
TypeScript (73.61%)
JavaScript (25.34%)
HTML (0.64%)
Pug (0.26%)
CSS (0.15%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
14,220 Stars
1,513 Commits
1,179 Forks
234 Watchers
22 Branches
114 Contributors
Updated on Jul 08, 2025
Latest Version
0.6.2
Package Id
redux-devtools-test-generator@0.6.2
Size
11.17 kB
NPM Version
lerna/3.22.1/node@v12.18.3+x64 (win32)
Node Version
12.18.3
Published on
Sep 07, 2020
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
9
35
npm install --save-dev redux-devtools-test-generator
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
1import React from 'react'; 2import { createDevTools } from 'redux-devtools'; 3import Inspector from 'redux-devtools-inspector'; 4import TestGenerator from 'redux-devtools-test-generator'; 5import mochaTemplate from 'redux-devtools-test-generator/lib/redux/mocha'; // If using default tests. 6 7const testComponent = (props) => ( 8 <TestGenerator 9 expect={mochaTemplate.expect} wrap={mochaTemplate.wrap} useCodemirror 10 {...props} 11 /> 12); 13 14export default createDevTools( 15 <Inspector 16 tabs: defaultTabs => [...defaultTabs, { name: 'Test', component: testComponent }] 17 /> 18);
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/
.
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. |
MIT
No vulnerabilities found.
Reason
30 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 0/3 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More