'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();
|
|
}
|
|
}
|
|
};
|
|
}
|
|
};
|