
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
enzyme-redux
Advanced tools
Test utils to simplify testing of containers in redux with enzyme.
In the terminal execute the following command:
$ npm install enzyme-redux --save-dev
import React from 'react';
import { connect } from 'react-redux';
import { shallowWithStore } from 'enzyme-redux';
import { createMockStore } from 'redux-test-utils';
describe('example shallowWithStore', () => {
const ReactComponent = () => (<div>dummy component</div>);
describe('state', () => {
it('works', () => {
const expectedState = 'expectedState';
const mapStateToProps = (state) => ({
state,
});
const ConnectedComponent = connect(mapStateToProps)(ReactComponent);
const component = shallowWithStore(<ConnectedComponent />, createMockStore(expectedState));
expect(component.props().state).toBe(expectedState);
});
});
describe('dispatch', () => {
it('works', () => {
const action = {
type: 'type',
};
const mapDispatchToProps = (dispatch) => ({
dispatchProp() {
dispatch(action);
},
});
const store = createMockStore();
const ConnectedComponent = connect(undefined, mapDispatchToProps)(ReactComponent);
const component = shallowWithStore(<ConnectedComponent />, store);
component.props().dispatchProp();
expect(store.isActionDispatched(action)).toBe(true);
});
});
});
import React from 'react';
import { connect } from 'react-redux';
import { shallowWithState } from 'enzyme-redux';
describe('example shallowWithState', () => {
const ReactComponent = () => (<div>dummy component</div>);
it('works', () => {
const expectedState = 'expectedState';
const mapStateToProps = (state) => ({
state,
});
const ConnectedComponent = connect(mapStateToProps)(ReactComponent);
const component = shallowWithState(<ConnectedComponent />, expectedState);
expect(component.props().state).toBe(expectedState);
});
});
import React from 'react';
import { connect } from 'react-redux';
import { mountWithStore } from 'enzyme-redux';
import { createMockStore } from 'redux-test-utils';
describe('example mountWithStore', () => {
const ReactComponent = () => (<div>dummy component</div>);
describe('state', () => {
it('works', () => {
const expectedState = 'expectedState';
const mapStateToProps = (state) => ({
state,
});
const ConnectedComponent = connect(mapStateToProps)(ReactComponent);
const component = mountWithStore(<ConnectedComponent />, createMockStore(expectedState));
expect(component.props().state).toBe(expectedState);
});
});
describe('dispatch', () => {
it('works', () => {
const action = {
type: 'type',
};
const mapDispatchToProps = (dispatch) => ({
dispatchProp() {
dispatch(action);
},
});
const store = createMockStore();
const ConnectedComponent = connect(undefined, mapDispatchToProps)(ReactComponent);
const component = mountWithStore(<ConnectedComponent />, store);
component.props().dispatchProp();
expect(store.isActionDispatched(action)).toBe(true);
});
});
});
import React from 'react';
import { connect } from 'react-redux';
import { mountWithState } from 'enzyme-redux';
describe('example mountWithState', () => {
const ReactComponent = () => (<div>dummy component</div>);
it('works', () => {
const expectedState = 'expectedState';
const mapStateToProps = (state) => ({
state,
});
const ConnectedComponent = connect(mapStateToProps)(ReactComponent);
const component = mountWithState(<ConnectedComponent />, expectedState);
expect(component.props().state).toBe(expectedState);
});
});
FAQs
Test utils to simplify testing of containers in redux with enzyme.
The npm package enzyme-redux receives a total of 3,736 weekly downloads. As such, enzyme-redux popularity was classified as popular.
We found that enzyme-redux demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.