-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathrequire-top-level-describe.ts
78 lines (72 loc) · 2.28 KB
/
require-top-level-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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import ESTree from 'estree'
import { createRule } from '../utils/createRule.js'
import { getAmountData } from '../utils/misc.js'
import { isTypeOfFnCall, parseFnCall } from '../utils/parseFnCall.js'
export default createRule({
create(context) {
const { maxTopLevelDescribes } = {
maxTopLevelDescribes: Infinity,
...((context.options?.[0] as Record<string, unknown>) ?? {}),
}
let topLevelDescribeCount = 0
let describeCount = 0
return {
CallExpression(node) {
const call = parseFnCall(context, node)
if (!call) return
if (call.type === 'describe') {
describeCount++
if (describeCount === 1) {
topLevelDescribeCount++
if (topLevelDescribeCount > maxTopLevelDescribes) {
context.report({
data: getAmountData(maxTopLevelDescribes),
messageId: 'tooManyDescribes',
node: node.callee,
})
}
}
} else if (!describeCount) {
if (call.type === 'test') {
context.report({ messageId: 'unexpectedTest', node: node.callee })
} else if (call.type === 'hook') {
context.report({ messageId: 'unexpectedHook', node: node.callee })
}
}
},
'CallExpression:exit'(node: ESTree.CallExpression) {
if (isTypeOfFnCall(context, node, ['describe'])) {
describeCount--
}
},
}
},
meta: {
docs: {
category: 'Best Practices',
description:
'Require test cases and hooks to be inside a `test.describe` block',
recommended: false,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/require-top-level-describe.md',
},
messages: {
tooManyDescribes:
'There should not be more than {{amount}} describe{{s}} at the top level',
unexpectedHook: 'All hooks must be wrapped in a describe block.',
unexpectedTest: 'All test cases must be wrapped in a describe block.',
},
schema: [
{
additionalProperties: false,
properties: {
maxTopLevelDescribes: {
minimum: 1,
type: 'number',
},
},
type: 'object',
},
],
type: 'suggestion',
},
})