eslint-plugin-react-redux
Version:
Enforcing best practices for react-redux
59 lines (54 loc) • 1.92 kB
JavaScript
const rule = require('../../../lib/rules/mapDispatchToProps-prefer-parameters-names');
const RuleTester = require('eslint').RuleTester;
const codeSamples = require('../../code-sanity-samples');
const formatOptions = require('../../util');
const parserOptions = formatOptions({
ecmaVersion: 2018,
sourceType: 'module',
});
const ruleTester = new RuleTester( parserOptions );
ruleTester.run('mapDispatchToProps-prefer-parameters-names', rule, {
valid: [
...codeSamples,
'const mapDispatchToProps = (dispatch, ownProps) => {}',
'const mapDispatchToProps = (dispatch, {prop1, prop2}) => {}',
'const mapDispatchToProps = (dispatch) => {}',
'const mapDispatchToProps = (dispatch, ownProps, moreArgs) => {}',
'const mapDispatchToProps = {anAction: anAction}',
'connect((state) => state, {anAction: anAction})(App)',
'connect(null, null)(App)',
'connect((state) => state, (dispatch, ownProps, moreArgs) => {})(App)',
'function mapDispatchToProps(dispatch, ownProps) {}',
],
invalid: [{
code: 'const mapDispatchToProps = (anyOtherName) => {}',
errors: [
{
message: 'mapDispatchToProps function parameter #0 should be named dispatch',
},
],
}, {
code: 'const mapDispatchToProps = (anyName, anyOtherName) => {}',
errors: [
{
message: 'mapDispatchToProps function parameter #0 should be named dispatch',
}, {
message: 'mapDispatchToProps function parameter #1 should be named ownProps',
},
],
}, {
code: 'function mapDispatchToProps(anyOtherName) {}',
errors: [
{
message: 'mapDispatchToProps function parameter #0 should be named dispatch',
},
],
}, {
code: 'connect((state) => state, (anyOtherName) => {})(App)',
errors: [
{
message: 'mapDispatchToProps function parameter #0 should be named dispatch',
},
],
}],
});