-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathmax-nested-describe.ts
60 lines (57 loc) · 1.54 KB
/
max-nested-describe.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
51
52
53
54
55
56
57
58
59
60
import * as ESTree from 'estree'
import { createRule } from '../utils/createRule.js'
import { isTypeOfFnCall } from '../utils/parseFnCall.js'
export default createRule({
create(context) {
const { options } = context
const max: number = options[0]?.max ?? 5
const describes: ESTree.CallExpression[] = []
return {
CallExpression(node) {
if (isTypeOfFnCall(context, node, ['describe'])) {
describes.unshift(node)
if (describes.length > max) {
context.report({
data: {
depth: describes.length.toString(),
max: max.toString(),
},
messageId: 'exceededMaxDepth',
node: node.callee,
})
}
}
},
'CallExpression:exit'(node) {
if (describes[0] === node) {
describes.shift()
}
},
}
},
meta: {
docs: {
category: 'Best Practices',
description: 'Enforces a maximum depth to nested describe calls',
recommended: true,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/max-nested-describe.md',
},
messages: {
exceededMaxDepth:
'Maximum describe call depth exceeded ({{ depth }}). Maximum allowed is {{ max }}.',
},
schema: [
{
additionalProperties: false,
properties: {
max: {
minimum: 0,
type: 'integer',
},
},
type: 'object',
},
],
type: 'suggestion',
},
})