-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathno-focused-test.ts
50 lines (47 loc) · 1.46 KB
/
no-focused-test.ts
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
50
import { getStringValue } from '../utils/ast.js'
import { createRule } from '../utils/createRule.js'
import { parseFnCall } from '../utils/parseFnCall.js'
export default createRule({
create(context) {
return {
CallExpression(node) {
const call = parseFnCall(context, node)
if (call?.type !== 'test' && call?.type !== 'describe') {
return
}
const onlyNode = call.members.find((s) => getStringValue(s) === 'only')
if (!onlyNode) return
context.report({
messageId: 'noFocusedTest',
node: onlyNode,
suggest: [
{
fix: (fixer) => {
// - 1 to remove the `.only` annotation with dot notation
return fixer.removeRange([
onlyNode.range![0] - 1,
onlyNode.range![1] + Number(onlyNode.type !== 'Identifier'),
])
},
messageId: 'suggestRemoveOnly',
},
],
})
},
}
},
meta: {
docs: {
category: 'Possible Errors',
description: 'Prevent usage of `.only()` focus test annotation',
recommended: true,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-focused-test.md',
},
hasSuggestions: true,
messages: {
noFocusedTest: 'Unexpected focused test.',
suggestRemoveOnly: 'Remove .only() annotation.',
},
type: 'problem',
},
})