forked from avajs/eslint-plugin-ava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailing-test-url.js
More file actions
49 lines (41 loc) · 1.02 KB
/
Copy pathfailing-test-url.js
File metadata and controls
49 lines (41 loc) · 1.02 KB
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
import createAvaRule from '../create-ava-rule.js';
import util from '../util.js';
const MESSAGE_ID = 'failing-test-url';
const urlPattern = /https?:\/\/\S+/;
const create = context => {
const ava = createAvaRule(context);
return ava.merge({
CallExpression(node) {
if (!ava.isInTestFile() || !ava.isTestNode(node)) {
return;
}
const propertyNode = util.getTestModifier(node, 'failing');
if (!propertyNode) {
return;
}
const comments = context.sourceCode.getCommentsBefore(node.parent);
const hasUrl = comments.some(comment => urlPattern.test(comment.value));
if (!hasUrl) {
context.report({
node: propertyNode,
messageId: MESSAGE_ID,
});
}
},
});
};
export default {
create,
meta: {
type: 'suggestion',
docs: {
description: 'Require a URL in a comment above `test.failing()`.',
recommended: false,
url: util.getDocsUrl(import.meta.filename),
},
schema: [],
messages: {
[MESSAGE_ID]: '`test.failing()` requires a URL in a comment above it.',
},
},
};