forked from testing-library/eslint-plugin-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-container.test.ts
82 lines (80 loc) · 1.57 KB
/
no-container.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
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
79
80
81
82
import { createRuleTester } from '../test-utils';
import rule, { RULE_NAME } from '../../../lib/rules/no-container';
const ruleTester = createRuleTester({
ecmaFeatures: {
jsx: true,
},
});
ruleTester.run(RULE_NAME, rule, {
valid: [
{
code: `
render(<Example />)
screen.getByRole('button', {name: /click me/i})
`,
},
{
code: `
const { container } = render(<Example />)
expect(container.firstChild).toBeDefined()
`,
},
{
code: `
const { container: alias } = render(<Example />)
expect(alias.firstChild).toBeDefined()
`,
},
],
invalid: [
{
code: `
const { container } = render(<Example />)
const button = container.querySelector('.btn-primary')
`,
errors: [
{
messageId: 'noContainer',
},
],
},
{
code: `
const { container } = render(<Example />)
container.querySelector()
`,
errors: [
{
messageId: 'noContainer',
},
],
},
{
code: `
const { container: alias } = render(<Example />)
alias.querySelector()
`,
errors: [
{
messageId: 'noContainer',
},
],
},
{
code: `
const { container } = renderWithRedux(<Example />)
container.querySelector()
`,
options: [
{
renderFunctions: ['renderWithRedux'],
},
],
errors: [
{
messageId: 'noContainer',
},
],
},
],
});