You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 rivejä
1.1 KiB

'use strict';
const createAstUtils = require('../util/ast');
module.exports = {
meta: {
type: 'problem',
docs: {
description: 'Disallow top-level hooks'
}
},
create(context) {
const astUtils = createAstUtils(context.settings);
const testSuiteStack = [];
return {
CallExpression(node) {
if (astUtils.isDescribe(node)) {
testSuiteStack.push(node);
return;
}
if (!astUtils.isHookIdentifier(node.callee)) {
return;
}
if (testSuiteStack.length === 0) {
context.report({
node: node.callee,
message: `Unexpected use of Mocha \`${ node.callee.name }\` hook outside of a test suite`
});
}
},
'CallExpression:exit'(node) {
if (testSuiteStack[testSuiteStack.length - 1] === node) {
testSuiteStack.pop();
}
}
};
}
};