forked from testing-library/dom-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement-queries.js.snap
67 lines (51 loc) · 1.81 KB
/
element-queries.js.snap
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`get throws a useful error message 1`] = `
"Unable to find a label with the text of: LucyRicardo
[36m<div>[39m
[36m<div />[39m
[36m</div>[39m"
`;
exports[`get throws a useful error message 2`] = `
"Unable to find an element with the placeholder text of: LucyRicardo
[36m<div>[39m
[36m<div />[39m
[36m</div>[39m"
`;
exports[`get throws a useful error message 3`] = `
"Unable to find an element with the text: LucyRicardo. This could be because the text is broken up by multiple elements. In this case, you can provide a function for your text matcher to make your matcher more flexible.
[36m<div>[39m
[36m<div />[39m
[36m</div>[39m"
`;
exports[`get throws a useful error message 4`] = `
"Unable to find an element by: [data-testid=\\"LucyRicardo\\"]
[36m<div>[39m
[36m<div />[39m
[36m</div>[39m"
`;
exports[`get throws a useful error message 5`] = `
"Unable to find an element with the alt text: LucyRicardo
[36m<div>[39m
[36m<div />[39m
[36m</div>[39m"
`;
exports[`get throws a useful error message 6`] = `
"Unable to find an element with the title: LucyRicardo.
[36m<div>[39m
[36m<div />[39m
[36m</div>[39m"
`;
exports[`label with no form control 1`] = `
"Found a label with the text of: /alone/, however no form control was found associated to that label. Make sure you're using the \\"for\\" attribute or \\"aria-labelledby\\" attribute correctly.
[36m<div>[39m
[36m<label>[39m
[0mAll alone[0m
[36m</label>[39m
[36m</div>[39m"
`;
exports[`totally empty label 1`] = `
"Found a label with the text of: , however no form control was found associated to that label. Make sure you're using the \\"for\\" attribute or \\"aria-labelledby\\" attribute correctly.
[36m<div>[39m
[36m<label />[39m
[36m</div>[39m"
`;