-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathbutton.test.tsx.snap
More file actions
48 lines (44 loc) · 1.62 KB
/
button.test.tsx.snap
File metadata and controls
48 lines (44 loc) · 1.62 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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Test Chat Button Match the snapshot: default button 1`] = `
<DocumentFragment>
<button
class="ant-btn ant-btn-default ant-btn-background-ghost dtc__aigc__button dtc__aigc__button--default"
type="button"
>
<span
class="dtc__aigc__button__text"
>
Default
</span>
</button>
</DocumentFragment>
`;
exports[`Test Chat Button Match the snapshot: primary button 1`] = `
<DocumentFragment>
<button
class="ant-btn ant-btn-default ant-btn-background-ghost dtc__aigc__button dtc__aigc__button--primary"
type="button"
>
<span
class="dtc__aigc__button__text"
>
Default
</span>
</button>
</DocumentFragment>
`;
exports[`Test Chat Button Match the snapshot: secondary button 1`] = `
<DocumentFragment>
<button
class="ant-btn ant-btn-default ant-btn-background-ghost dtc__aigc__button dtc__aigc__button--secondary"
type="button"
>
<span
class="dtc__aigc__button__text"
>
Default
</span>
</button>
</DocumentFragment>
`;
exports[`Test Chat Button expect ONLY one global gradient div: global gradient 1`] = `"<svg width="0" height="0"><defs><linearGradient id="secondary_linear_gradient" x1="0" y1="0.2" x2="0.9" y2="0.5"><stop stop-color="#00BAC6"></stop><stop offset="0.5" stop-color="#0067FF"></stop><stop offset="1" stop-color="#450FDE"></stop></linearGradient><linearGradient id="secondary_linear_gradient_hover" x1="0.5" y1="0" x2="1" y2="0.2"><stop stop-color="#00BAC6"></stop><stop offset="0.5" stop-color="#0067FF"></stop><stop offset="1" stop-color="#450FDE"></stop></linearGradient></defs></svg>"`;