-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy paththink.test.tsx.snap
More file actions
74 lines (71 loc) · 1.56 KB
/
think.test.tsx.snap
File metadata and controls
74 lines (71 loc) · 1.56 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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Think component snapshot renders completed state with children correctly 1`] = `
<div>
<div
class="dtc__custom__think"
>
<section
class="dtc-flex dtc__custom__think__btn"
style="flex-wrap: nowrap; justify-content: normal; align-items: center; gap: 4px;"
>
已完成深度思考
<span
color="#64698B"
data-mock-icon="UpOutlined"
size="12"
style="transform: none;"
/>
</section>
<div
class="dtc__custom__think__content"
>
<div
class="dtc__custom__think__line"
/>
<div
class="dtc__custom__think__text"
>
这里是 Think 的内容示例(支持 Markdown)
- 列表项 A
- 列表项 B
</div>
</div>
</div>
</div>
`;
exports[`Think component snapshot renders loading state correctly 1`] = `
<div>
<div
class="dtc__custom__think"
>
<section
class="dtc-flex dtc__custom__think__btn"
style="flex-wrap: nowrap; justify-content: normal; align-items: center; gap: 4px;"
>
<span
class="gradient-text"
>
思考中...
</span>
<span
color="#64698B"
data-mock-icon="UpOutlined"
size="12"
style="transform: none;"
/>
</section>
<div
class="dtc__custom__think__content"
>
<div
class="dtc__custom__think__line"
/>
<div
class="dtc__custom__think__text"
>
正在思考中,暂无内容。
</div>
</div>
</div>
</div>
`;