no-page-pause
Ast Rule: function call
no-page-pause
// See https://doc.codiga.io/docs/rosie/ast/javascript/rosie-ast-javascript-functioncall/
function getFunctionName(node) {
if (node.astType === "member") {
return node.name.value;
}
if (node.astType === "string") {
return node.value;
}
return "";
}
function visit(node, filename, code) {
// only run inside spec files
if (!filename.includes(".spec.") && !filename.includes(".test.")) return;
// Check this is a function call and the function name is a simple string
if (
node.functionName &&
node.functionName.astType === "member" &&
getFunctionName(node.functionName) === "pause" &&
getFunctionName(node.functionName.parent) === "page"
) {
const error = buildError(
node.functionName.start.line,
node.functionName.start.col,
node.functionName.end.line,
node.functionName.end.col,
"Unexpected use of page.pause().",
"INFORMATIONAL",
"BEST_PRACTICE"
);
addError(error);
}
}
test.spec.js
Expected test result: no error
Example of correct code for this rule
test.spec.js
Expected test result: has error
Example of incorrect code for this rule