forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.test.js.snap
67 lines (59 loc) · 2.16 KB
/
demo.test.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[`renders ./components/message/demo/custom-style.vue correctly 1`] = `
<button class="ant-btn ant-btn-default" type="button">
<!----><span>Customized style</span>
</button>
`;
exports[`renders ./components/message/demo/duration.vue correctly 1`] = `
<button class="ant-btn ant-btn-default" type="button">
<!----><span>Customized display duration</span>
</button>
`;
exports[`renders ./components/message/demo/hook.vue correctly 1`] = `
<!--teleport start-->
<!--teleport end-->
<button class="ant-btn ant-btn-primary" type="button">
<!----><span>Display normal message</span>
</button>
`;
exports[`renders ./components/message/demo/info.vue correctly 1`] = `
<button class="ant-btn ant-btn-primary" type="button">
<!----><span>Display normal message</span>
</button>
`;
exports[`renders ./components/message/demo/loading.vue correctly 1`] = `
<button class="ant-btn ant-btn-default" type="button">
<!----><span>Display a loading indicator</span>
</button>
`;
exports[`renders ./components/message/demo/other.vue correctly 1`] = `
<div class="ant-space ant-space-horizontal ant-space-align-center">
<div class="ant-space-item" style="margin-right: 8px;"><button class="ant-btn ant-btn-default" type="button">
<!----><span>Success</span>
</button></div>
<!---->
<div class="ant-space-item" style="margin-right: 8px;"><button class="ant-btn ant-btn-default" type="button">
<!----><span>Error</span>
</button></div>
<!---->
<div class="ant-space-item"><button class="ant-btn ant-btn-default" type="button">
<!----><span>Warning</span>
</button></div>
<!---->
</div>
`;
exports[`renders ./components/message/demo/thenable.vue correctly 1`] = `
<button class="ant-btn ant-btn-default" type="button">
<!----><span>Display a sequence of message</span>
</button>
`;
exports[`renders ./components/message/demo/update.vue correctly 1`] = `
<button class="ant-btn ant-btn-primary" type="button">
<!----><span>Open the message box (update by key)</span>
</button>
<br>
<br>
<button class="ant-btn ant-btn-primary" type="button">
<!----><span>Open the message box (update by reactive)</span>
</button>
`;