forked from react-component/image
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.test.tsx.snap
More file actions
81 lines (79 loc) · 1.96 KB
/
preview.test.tsx.snap
File metadata and controls
81 lines (79 loc) · 1.96 KB
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Preview add rootClassName should be correct 1`] = `
<div
class="rc-image custom-className"
>
<img
class="rc-image-img"
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
/>
</div>
`;
exports[`Preview add rootClassName should be correct when open preview 1`] = `
[
<div>
<div
class="rc-image custom-className"
>
<img
class="rc-image-img"
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
/>
</div>
</div>,
<div>
<div
class="rc-image-preview-root custom-className"
>
<div
class="rc-image-preview-mask"
/>
<div
class="rc-image-preview-wrap"
tabindex="-1"
>
<div
aria-modal="true"
class="rc-image-preview"
role="dialog"
>
<div
aria-hidden="true"
style="width: 0px; height: 0px; overflow: hidden; outline: none;"
tabindex="0"
/>
<div
class="rc-image-preview-content"
>
<div
class="rc-image-preview-body"
>
<div
class="rc-image-preview-img-wrapper"
>
<img
class="rc-image-preview-img"
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
style="transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotate(0deg);"
/>
</div>
</div>
</div>
<div
aria-hidden="true"
style="width: 0px; height: 0px; overflow: hidden; outline: none;"
tabindex="0"
/>
</div>
</div>
</div>
</div>,
<div
class="rc-image-preview-operations-wrapper custom-className"
>
<ul
class="rc-image-preview-operations"
/>
</div>,
]
`;