-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathno-inline-assertions.js
49 lines (42 loc) · 1.08 KB
/
no-inline-assertions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'use strict';
const {visitIf} = require('enhance-visitors');
const createAvaRule = require('../create-ava-rule');
const util = require('../util');
const create = context => {
const ava = createAvaRule();
return ava.merge({
CallExpression: visitIf([
ava.isInTestFile,
ava.isTestNode,
])(node => {
const functionArgumentIndex = node.arguments.length - 1;
if (functionArgumentIndex > 1) {
return;
}
const functionArgument = node.arguments[functionArgumentIndex];
if (!util.isFunctionExpression(functionArgument)) {
return;
}
const {body} = functionArgument;
if (body.type === 'CallExpression') {
context.report({
node,
message: 'The test implementation should not be an inline arrow function.',
fix: fixer => [fixer.insertTextBefore(body, '{'), fixer.insertTextAfter(body, '}')],
});
}
}),
});
};
module.exports = {
create,
meta: {
type: 'suggestion',
docs: {
description: 'Ensure assertions are not called from inline arrow functions.',
url: util.getDocsUrl(__filename),
},
fixable: 'code',
schema: [],
},
};