alecxe/eslint-plugin-protractor

View on GitHub
lib/rules/use-simple-repeaters.js

Summary

Maintainability
B
4 hrs
Test Coverage
'use strict'
 
/**
* @fileoverview Discourage using extended ng-repeat syntax in by.repeater() locators
* @author Alexander Afanasyev
*/
 
module.exports = {
meta: {
schema: []
},
 
Function `create` has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
create: function (context) {
return {
'CallExpression': function (node) {
if (node.arguments && node.arguments[0] && node.arguments[0].hasOwnProperty('value')) {
var object = node.callee.object
var property = node.callee.property
 
if (object && property && object.name === 'by' && property.name === 'repeater') {
var repeaterValue = node.arguments[0].value
if (repeaterValue) {
Similar blocks of code found in 3 locations. Consider refactoring.
if (repeaterValue.indexOf('|') > 0) {
context.report({
node: node.arguments[0],
message: 'Unexpected filter inside a by.repeater() locator.'
})
}
 
Similar blocks of code found in 3 locations. Consider refactoring.
if (repeaterValue.indexOf('track by') > 0) {
context.report({
node: node.arguments[0],
message: 'Unexpected "track by" inside a by.repeater() locator.'
})
}
}
}
}
}
}
}
}