Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redux-devtools-test-generator

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-devtools-test-generator

Generate tests for redux devtools.

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
49
decreased by-9.26%
Maintainers
1
Weekly downloads
 
Created
Source

Redux DevTools Test Generator

Watch my presentation at React Europe to see how it works.

Installation

npm install --save-dev redux-devtools-test-generator

Usage

Use with redux-devtools and redux-devtools-inspector (support for Redux DevTools Extension will come later).

containers/DevTools.js
import React from 'react';
import { createDevTools } from 'redux-devtools';
import Inspector from 'redux-devtools-inspector';
import TestGenerator from 'redux-devtools-test-generator';
import mochaTemplate from 'redux-devtools-test-generator/lib/redux/mocha'; // If using default tests.

export default createDevTools(
  <Inspector
    customTabs={{
      'Test': <TestGenerator expect={mochaTemplate.expect} wrap={mochaTemplate.wrap} />
    }}
  />
);

Instead of mochaTemplate.expect and mochaTemplate.wrap you can use your function templates.

Also include codemirror/lib/codemirror.css style and optionally themes from codemirror/theme/.

Props

NameDescription
expectFunction with action, prevState, curState arguments, which returns a string representing the assertion (see the example).
[wrap]Optional function which gets expects argument and returns a string (see the example).
[theme]Name of the codemirror theme as a string.

License

MIT

Created By

If you like this, follow @mdiordiev on twitter.

Keywords

FAQs

Package last updated on 22 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc