-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathno-container.test.ts
125 lines (121 loc) · 2.7 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import { createRuleTester } from '../test-utils';
import rule, { RULE_NAME } from '../../../lib/rules/no-container';
const ruleTester = createRuleTester();
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();
`,
},
{
code: `
function getExampleDOM() {
const container = document.createElement('div');
container.innerHTML = \`
<label for="username">Username</label>
<input id="username" />
<button>Print Username</button>
\`;
const button = container.querySelector('button');
button.addEventListener('click', () => console.log('clicked'));
return container;
}
const exampleDOM = getExampleDOM();
screen.getByText(exampleDOM, 'Print Username').click();
`,
},
{
code: `
const { container: { firstChild } } = render(<Example />);
expect(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 view = render(<Example />);
const button = view.container.querySelector('.btn-primary');
`,
errors: [
{
messageId: 'noContainer',
},
],
},
{
code: `
const { container: { querySelector } } = render(<Example />);
querySelector('foo');
`,
errors: [
{
messageId: 'noContainer',
},
],
},
{
code: `
const { container } = renderWithRedux(<Example />);
container.querySelector();
`,
options: [
{
renderFunctions: ['renderWithRedux'],
},
],
errors: [
{
messageId: 'noContainer',
},
],
},
],
});