@kimdw-rtk/ui 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. package/.babelrc +12 -0
  2. package/.turbo/turbo-check-types.log +2 -0
  3. package/.turbo/turbo-lint.log +12 -0
  4. package/.turbo/turbo-test.log +4084 -0
  5. package/.vscode/settings.json +4 -0
  6. package/eslint.config.mjs +4 -0
  7. package/jest.config.json +10 -0
  8. package/jest.setup.js +2 -0
  9. package/package.json +53 -0
  10. package/src/components/Accordion/Accordion.css.ts +29 -0
  11. package/src/components/Accordion/Accordion.spec.tsx +6 -0
  12. package/src/components/Accordion/Accordion.tsx +44 -0
  13. package/src/components/Accordion/AccordionContent.css.ts +29 -0
  14. package/src/components/Accordion/AccordionContent.tsx +87 -0
  15. package/src/components/Accordion/AccordionContext.ts +9 -0
  16. package/src/components/Accordion/AccordionTrigger.css.ts +46 -0
  17. package/src/components/Accordion/AccordionTrigger.tsx +41 -0
  18. package/src/components/Accordion/index.ts +3 -0
  19. package/src/components/Alert/index.tsx +25 -0
  20. package/src/components/Box/Box.css.ts +18 -0
  21. package/src/components/Box/Box.spec.tsx +6 -0
  22. package/src/components/Box/index.tsx +41 -0
  23. package/src/components/Button/Button.css.ts +241 -0
  24. package/src/components/Button/Button.spec.tsx +30 -0
  25. package/src/components/Button/index.tsx +60 -0
  26. package/src/components/Card/Card.css.ts +93 -0
  27. package/src/components/Card/Card.spec.tsx +24 -0
  28. package/src/components/Card/Card.tsx +41 -0
  29. package/src/components/Card/CardContent.css.ts +8 -0
  30. package/src/components/Card/CardContent.tsx +23 -0
  31. package/src/components/Card/CardInteraction.css.ts +11 -0
  32. package/src/components/Card/CardInteraction.tsx +36 -0
  33. package/src/components/Card/CardThumbnail.css.ts +6 -0
  34. package/src/components/Card/CardThumbnail.tsx +23 -0
  35. package/src/components/Card/index.ts +4 -0
  36. package/src/components/Chip/Chip.css.ts +75 -0
  37. package/src/components/Chip/Chip.spec.tsx +6 -0
  38. package/src/components/Chip/Chip.tsx +37 -0
  39. package/src/components/Chip/index.ts +1 -0
  40. package/src/components/Confirm/index.tsx +44 -0
  41. package/src/components/Dialog/Dialog.css.ts +25 -0
  42. package/src/components/Dialog/Dialog.spec.tsx +26 -0
  43. package/src/components/Dialog/Dialog.tsx +30 -0
  44. package/src/components/Dialog/DialogContent.css.ts +16 -0
  45. package/src/components/Dialog/DialogContent.tsx +26 -0
  46. package/src/components/Dialog/DialogFooter.css.ts +20 -0
  47. package/src/components/Dialog/DialogFooter.tsx +26 -0
  48. package/src/components/Dialog/DialogHeader.css.ts +31 -0
  49. package/src/components/Dialog/DialogHeader.tsx +37 -0
  50. package/src/components/Dialog/index.ts +4 -0
  51. package/src/components/Navigation/Navigation.spec.tsx +19 -0
  52. package/src/components/Navigation/NavigationAside.css.ts +7 -0
  53. package/src/components/Navigation/NavigationAside.tsx +23 -0
  54. package/src/components/Navigation/NavigationBar.css.ts +42 -0
  55. package/src/components/Navigation/NavigationBar.tsx +25 -0
  56. package/src/components/Navigation/NavigationContainer.css.ts +11 -0
  57. package/src/components/Navigation/NavigationContainer.tsx +26 -0
  58. package/src/components/Navigation/NavigationDrawer.css.ts +61 -0
  59. package/src/components/Navigation/NavigationDrawer.tsx +67 -0
  60. package/src/components/Navigation/NavigationItem.css.ts +43 -0
  61. package/src/components/Navigation/NavigationItem.tsx +24 -0
  62. package/src/components/Navigation/NavigationLogo.css.ts +5 -0
  63. package/src/components/Navigation/NavigationLogo.tsx +28 -0
  64. package/src/components/Navigation/NavigationMenu.css.ts +23 -0
  65. package/src/components/Navigation/NavigationMenu.tsx +25 -0
  66. package/src/components/Navigation/index.ts +7 -0
  67. package/src/components/Range/Range.css.ts +132 -0
  68. package/src/components/Range/Range.spec.tsx +6 -0
  69. package/src/components/Range/Range.tsx +90 -0
  70. package/src/components/Range/index.ts +1 -0
  71. package/src/components/ScrollArea/ScrollArea.css.ts +40 -0
  72. package/src/components/ScrollArea/ScrollArea.spec.tsx +6 -0
  73. package/src/components/ScrollArea/ScrollArea.tsx +68 -0
  74. package/src/components/ScrollArea/index.ts +1 -0
  75. package/src/components/Select/Select.css.ts +22 -0
  76. package/src/components/Select/Select.spec.tsx +65 -0
  77. package/src/components/Select/Select.tsx +111 -0
  78. package/src/components/Select/SelectContext.ts +59 -0
  79. package/src/components/Select/SelectOption.css.ts +14 -0
  80. package/src/components/Select/SelectOption.tsx +40 -0
  81. package/src/components/Select/SelectOptionList.css.ts +68 -0
  82. package/src/components/Select/SelectOptionList.tsx +59 -0
  83. package/src/components/Select/SelectTrigger.css.ts +73 -0
  84. package/src/components/Select/SelectTrigger.tsx +49 -0
  85. package/src/components/Select/index.tsx +2 -0
  86. package/src/components/Skeleton/Skeleton.css.ts +26 -0
  87. package/src/components/Skeleton/Skeleton.spec.tsx +6 -0
  88. package/src/components/Skeleton/index.tsx +27 -0
  89. package/src/components/Table/Table.css.ts +10 -0
  90. package/src/components/Table/Table.spec.tsx +12 -0
  91. package/src/components/Table/Table.tsx +27 -0
  92. package/src/components/Table/TableBody.tsx +14 -0
  93. package/src/components/Table/TableCell.css.ts +43 -0
  94. package/src/components/Table/TableCell.tsx +30 -0
  95. package/src/components/Table/TableHead.css.ts +10 -0
  96. package/src/components/Table/TableHead.tsx +30 -0
  97. package/src/components/Table/TableHeader.tsx +14 -0
  98. package/src/components/Table/TableRow.css.ts +3 -0
  99. package/src/components/Table/TableRow.tsx +24 -0
  100. package/src/components/Table/index.ts +6 -0
  101. package/src/components/Tabs/Tabs.spec.tsx +46 -0
  102. package/src/components/Tabs/Tabs.tsx +34 -0
  103. package/src/components/Tabs/TabsContent.tsx +32 -0
  104. package/src/components/Tabs/TabsList.css.ts +11 -0
  105. package/src/components/Tabs/TabsList.tsx +25 -0
  106. package/src/components/Tabs/TabsProvider.tsx +17 -0
  107. package/src/components/Tabs/TabsTrigger.css.ts +38 -0
  108. package/src/components/Tabs/TabsTrigger.tsx +43 -0
  109. package/src/components/Tabs/index.ts +4 -0
  110. package/src/components/TextField/TextField.css.ts +81 -0
  111. package/src/components/TextField/TextField.spec.tsx +6 -0
  112. package/src/components/TextField/index.tsx +38 -0
  113. package/src/components/Toast/Toast.css.ts +79 -0
  114. package/src/components/Toast/Toast.spec.tsx +6 -0
  115. package/src/components/Toast/index.tsx +48 -0
  116. package/src/components/Typography/Typography.css.ts +17 -0
  117. package/src/components/Typography/Typography.spec.tsx +35 -0
  118. package/src/components/Typography/index.tsx +57 -0
  119. package/src/components/index.ts +18 -0
  120. package/src/contexts/UIProvider.tsx +30 -0
  121. package/src/contexts/index.ts +1 -0
  122. package/src/hooks/index.ts +5 -0
  123. package/src/hooks/useDialog/index.tsx +51 -0
  124. package/src/hooks/useDialog/useDialog.spec.tsx +80 -0
  125. package/src/hooks/useMouseScroll/index.ts +63 -0
  126. package/src/hooks/usePointerSlider/index.ts +79 -0
  127. package/src/hooks/useRipple/index.tsx +152 -0
  128. package/src/hooks/useRipple/ripple.css.ts +40 -0
  129. package/src/hooks/useToast/ToastContainer.css.ts +12 -0
  130. package/src/hooks/useToast/ToastContainer.tsx +11 -0
  131. package/src/hooks/useToast/ToastProvider.tsx +131 -0
  132. package/src/hooks/useToast/index.ts +15 -0
  133. package/src/index.ts +8 -0
  134. package/src/styles/globalStyle.css.ts +36 -0
  135. package/src/styles/index.ts +4 -0
  136. package/src/styles/layers.css.ts +4 -0
  137. package/src/styles/overlay.css.ts +40 -0
  138. package/src/styles/sprinkles.css.ts +149 -0
  139. package/src/styles/sx.ts +13 -0
  140. package/src/tests/uiTest.tsx +54 -0
  141. package/src/themes/darkTheme.css.ts +30 -0
  142. package/src/themes/index.ts +3 -0
  143. package/src/themes/lightTheme.css.ts +30 -0
  144. package/src/themes/theme.css.ts +32 -0
  145. package/src/tokens/index.ts +5 -0
  146. package/src/tokens/scale/color.ts +604 -0
  147. package/src/tokens/semantic/breakpoint.ts +6 -0
  148. package/src/tokens/semantic/color.ts +10 -0
  149. package/src/tokens/semantic/spacing.ts +9 -0
  150. package/src/tokens/semantic/typography.ts +32 -0
  151. package/src/types/index.ts +1 -0
  152. package/src/types/ui.types.ts +26 -0
  153. package/src/utils/index.ts +1 -0
  154. package/src/utils/sprinklesUtils.ts +28 -0
  155. package/src/utils/styleUtils.css.ts +109 -0
  156. package/tsconfig.json +11 -0
  157. package/turbo/generators/config.ts +30 -0
  158. package/turbo/generators/templates/component.hbs +8 -0
@@ -0,0 +1,4084 @@
1
+ > @kimdw-rtk/ui@0.1.0 test C:\Users\user\Desktop\Project\react-kits\packages\ui
2
+ > jest --verbose]0;C:\Windows\system32\cmd.exe[?25hDetermining test suites to run...
3
+ Tests: 0 total
4
+ Snapshots: 0 total
5
+ Time: 0 s, estimated 6 s
6
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ[?25h
7
+ 
8
+ 
9
+ 
10
+ 
11
+ [?25h
12
+ RUNS  src/components/Toast/Toast.spec.tsx
13
+ RUNS  src/components/Table/Table.spec.tsx
14
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
15
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
16
+ RUNS  src/components/Button/Button.spec.tsx 
17
+ RUNS  src/components/Typography/Typography.spec.tsx
18
+ RUNS  src/components/Select/Select.spec.tsx 
19
+ RUNS  src/components/Tabs/Tabs.spec.tsx
20
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
21
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
22
+ RUNS  src/components/Box/Box.spec.tsx
23
+ 
24
+ Test Suites: 0 of 17 total
25
+ Tests: 0 total
26
+ Snapshots: 0 total
27
+ Time: 0 s, estimated 6 s
28
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
29
+ 
30
+ 
31
+ 
32
+ 
33
+ 
34
+ 
35
+ 
36
+ 
37
+ 
38
+ 
39
+ 
40
+ 
41
+ 
42
+ 
43
+ 
44
+ [?25h
45
+ RUNS  src/components/Toast/Toast.spec.tsx
46
+ RUNS  src/components/Table/Table.spec.tsx
47
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
48
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
49
+ RUNS  src/components/Button/Button.spec.tsx 
50
+ RUNS  src/components/Typography/Typography.spec.tsx
51
+ RUNS  src/components/Select/Select.spec.tsx 
52
+ RUNS  src/components/Tabs/Tabs.spec.tsx
53
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
54
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
55
+ RUNS  src/components/Box/Box.spec.tsx
56
+ 
57
+ Test Suites: 0 of 17 total
58
+ Tests: 0 total
59
+ Snapshots: 0 total
60
+ Time: 1 s, estimated 6 s
61
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
62
+ 
63
+ 
64
+ 
65
+ 
66
+ 
67
+ 
68
+ 
69
+ 
70
+ 
71
+ 
72
+ 
73
+ 
74
+ 
75
+ 
76
+ 
77
+ [?25h
78
+ RUNS  src/components/Toast/Toast.spec.tsx
79
+ RUNS  src/components/Table/Table.spec.tsx
80
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
81
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
82
+ RUNS  src/components/Button/Button.spec.tsx 
83
+ RUNS  src/components/Typography/Typography.spec.tsx
84
+ RUNS  src/components/Select/Select.spec.tsx 
85
+ RUNS  src/components/Tabs/Tabs.spec.tsx
86
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
87
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
88
+ RUNS  src/components/Box/Box.spec.tsx
89
+ 
90
+ Test Suites: 0 of 17 total
91
+ Tests: 0 total
92
+ Snapshots: 0 total
93
+ Time: 2 s, estimated 6 s
94
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
95
+ 
96
+ 
97
+ 
98
+ 
99
+ 
100
+ 
101
+ 
102
+ 
103
+ 
104
+ 
105
+ 
106
+ 
107
+ 
108
+ 
109
+ 
110
+ [?25h
111
+ RUNS  src/components/Toast/Toast.spec.tsx
112
+ RUNS  src/components/Table/Table.spec.tsx
113
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
114
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
115
+ RUNS  src/components/Button/Button.spec.tsx 
116
+ RUNS  src/components/Typography/Typography.spec.tsx
117
+ RUNS  src/components/Select/Select.spec.tsx 
118
+ RUNS  src/components/Tabs/Tabs.spec.tsx
119
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
120
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
121
+ RUNS  src/components/Box/Box.spec.tsx
122
+ 
123
+ Test Suites: 0 of 17 total
124
+ Tests: 0 total
125
+ Snapshots: 0 total
126
+ Time: 3 s, estimated 6 s
127
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
128
+ 
129
+ 
130
+ 
131
+ 
132
+ 
133
+ 
134
+ 
135
+ 
136
+ 
137
+ 
138
+ 
139
+ 
140
+ 
141
+ 
142
+ 
143
+ [?25h
144
+ RUNS  src/components/Toast/Toast.spec.tsx
145
+ RUNS  src/components/Table/Table.spec.tsx
146
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
147
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
148
+ RUNS  src/components/Button/Button.spec.tsx 
149
+ RUNS  src/components/Typography/Typography.spec.tsx
150
+ RUNS  src/components/Select/Select.spec.tsx 
151
+ RUNS  src/components/Tabs/Tabs.spec.tsx
152
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
153
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
154
+ RUNS  src/components/Box/Box.spec.tsx
155
+ 
156
+ Test Suites: 0 of 17 total
157
+ Tests: 0 total
158
+ Snapshots: 0 total
159
+ Time: 4 s, estimated 6 s
160
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
161
+ 
162
+ 
163
+ 
164
+ 
165
+ 
166
+ 
167
+ 
168
+ 
169
+ 
170
+ 
171
+ 
172
+ 
173
+ 
174
+ 
175
+ 
176
+ [?25h
177
+ RUNS  src/components/Toast/Toast.spec.tsx
178
+ RUNS  src/components/Table/Table.spec.tsx
179
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
180
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
181
+ RUNS  src/components/Button/Button.spec.tsx 
182
+ RUNS  src/components/Typography/Typography.spec.tsx
183
+ RUNS  src/components/Select/Select.spec.tsx 
184
+ RUNS  src/components/Tabs/Tabs.spec.tsx
185
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
186
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
187
+ RUNS  src/components/Box/Box.spec.tsx
188
+ 
189
+ Test Suites: 0 of 17 total
190
+ Tests: 0 total
191
+ Snapshots: 0 total
192
+ Time: 5 s, estimated 6 s
193
+ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ
194
+ 
195
+ 
196
+ 
197
+ 
198
+ 
199
+ 
200
+ 
201
+ 
202
+ 
203
+ 
204
+ 
205
+ 
206
+ 
207
+ 
208
+ 
209
+ [?25h
210
+ RUNS  src/components/Toast/Toast.spec.tsx
211
+ RUNS  src/components/Table/Table.spec.tsx
212
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
213
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
214
+ RUNS  src/components/Button/Button.spec.tsx 
215
+ RUNS  src/components/Typography/Typography.spec.tsx
216
+ RUNS  src/components/Select/Select.spec.tsx 
217
+ RUNS  src/components/Tabs/Tabs.spec.tsx
218
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
219
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
220
+ RUNS  src/components/Box/Box.spec.tsx
221
+ 
222
+ Test Suites: 0 of 17 total
223
+ Tests: 0 total
224
+ Snapshots: 0 total
225
+ Time: 6 s
226
+ 
227
+ 
228
+ 
229
+ 
230
+ 
231
+ 
232
+ 
233
+ 
234
+ 
235
+ 
236
+ 
237
+ 
238
+ 
239
+ 
240
+ [?25h
241
+ RUNS  src/components/Toast/Toast.spec.tsx
242
+ RUNS  src/components/Table/Table.spec.tsx
243
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
244
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
245
+ RUNS  src/components/Button/Button.spec.tsx 
246
+ RUNS  src/components/Typography/Typography.spec.tsx
247
+ RUNS  src/components/Select/Select.spec.tsx 
248
+ RUNS  src/components/Tabs/Tabs.spec.tsx
249
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
250
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
251
+ RUNS  src/components/Box/Box.spec.tsx
252
+ 
253
+ Test Suites: 0 of 17 total
254
+ Tests: 0 total
255
+ Snapshots: 0 total
256
+ Time: 7 s
257
+ 
258
+ 
259
+ 
260
+ 
261
+ 
262
+ 
263
+ 
264
+ 
265
+ 
266
+ 
267
+ 
268
+ 
269
+ 
270
+ 
271
+ [?25h
272
+ RUNS  src/components/Toast/Toast.spec.tsx
273
+ RUNS  src/components/Table/Table.spec.tsx
274
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
275
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
276
+ RUNS  src/components/Button/Button.spec.tsx 
277
+ RUNS  src/components/Typography/Typography.spec.tsx
278
+ RUNS  src/components/Select/Select.spec.tsx 
279
+ RUNS  src/components/Tabs/Tabs.spec.tsx
280
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
281
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
282
+ RUNS  src/components/Box/Box.spec.tsx
283
+ 
284
+ Test Suites: 0 of 17 total
285
+ Tests: 0 total
286
+ Snapshots: 0 total
287
+ Time: 8 s
288
+ 
289
+ 
290
+ 
291
+ 
292
+ 
293
+ 
294
+ 
295
+ 
296
+ 
297
+ 
298
+ 
299
+ 
300
+ 
301
+ 
302
+ [?25h
303
+ RUNS  src/components/Toast/Toast.spec.tsx
304
+ RUNS  src/components/Table/Table.spec.tsx
305
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
306
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
307
+ RUNS  src/components/Button/Button.spec.tsx 
308
+ RUNS  src/components/Typography/Typography.spec.tsx
309
+ RUNS  src/components/Select/Select.spec.tsx 
310
+ RUNS  src/components/Tabs/Tabs.spec.tsx
311
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
312
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
313
+ RUNS  src/components/Box/Box.spec.tsx
314
+ 
315
+ Test Suites: 0 of 17 total
316
+ Tests: 0 total
317
+ Snapshots: 0 total
318
+ Time: 9 s
319
+ 
320
+ 
321
+ 
322
+ 
323
+ 
324
+ 
325
+ 
326
+ 
327
+ 
328
+ 
329
+ 
330
+ 
331
+ 
332
+ 
333
+ [?25h PASS  src/components/Tabs/Tabs.spec.tsx
334
+ Tabs ์ปดํฌ๋„ŒํŠธ
335
+ โˆš TabsTrigger๋ฅผ ํด๋ฆญํ•˜๋ฉด ํ•ด๋‹นํ•˜๋Š” value์˜ Content๋ฅผ ๋ณด์—ฌ์ค€๋‹ค. (17 ms)
336
+ โˆš defaultValue์— ํ•ด๋‹นํ•˜๋Š” Content๋ฅผ ๊ธฐ๋ณธ์ ์œผ๋กœ ๋ณด์—ฌ์ค€๋‹ค. (3 ms)
337
+ 
338
+ RUNS  src/components/Toast/Toast.spec.tsx
339
+ RUNS  src/components/Table/Table.spec.tsx
340
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
341
+ RUNS  src/components/Dialog/Dialog.spec.tsx
342
+ RUNS  src/components/Button/Button.spec.tsx
343
+ RUNS  src/components/Typography/Typography.spec.tsx
344
+ RUNS  src/components/Select/Select.spec.tsx
345
+ RUNS  src/components/Tabs/Tabs.spec.tsx
346
+ RUNS  src/components/Accordion/Accordion.spec.tsx
347
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
348
+ RUNS  src/components/Box/Box.spec.tsx
349
+ 
350
+ Test Suites: 0 of 17 total
351
+ Tests: 0 total
352
+ Snapshots: 0 total
353
+  Tabs UI
354
+ 
355
+ RUNS  src/components/Toast/Toast.spec.tsx
356
+ RUNS  src/components/Table/Table.spec.tsx
357
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
358
+ RUNS  src/components/Dialog/Dialog.spec.tsx
359
+ RUNS  src/components/Button/Button.spec.tsx
360
+ RUNS  src/components/Typography/Typography.spec.tsx
361
+ RUNS  src/components/Select/Select.spec.tsx
362
+ RUNS  src/components/Tabs/Tabs.spec.tsx
363
+ RUNS  src/components/Accordion/Accordion.spec.tsx
364
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
365
+ RUNS  src/components/Box/Box.spec.tsx
366
+ 
367
+ Test Suites: 0 of 17 total
368
+ Tests: 0 total
369
+ Snapshots: 0 total
370
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (44 ms)
371
+ 
372
+ RUNS  src/components/Toast/Toast.spec.tsx
373
+ RUNS  src/components/Table/Table.spec.tsx
374
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
375
+ RUNS  src/components/Dialog/Dialog.spec.tsx
376
+ RUNS  src/components/Button/Button.spec.tsx
377
+ RUNS  src/components/Typography/Typography.spec.tsx
378
+ RUNS  src/components/Select/Select.spec.tsx
379
+ RUNS  src/components/Tabs/Tabs.spec.tsx
380
+ RUNS  src/components/Accordion/Accordion.spec.tsx
381
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
382
+ RUNS  src/components/Box/Box.spec.tsx
383
+ 
384
+ Test Suites: 0 of 17 total
385
+ Tests: 0 total
386
+ Snapshots: 0 total
387
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (8 ms)
388
+ 
389
+ RUNS  src/components/Toast/Toast.spec.tsx
390
+ RUNS  src/components/Table/Table.spec.tsx
391
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
392
+ RUNS  src/components/Dialog/Dialog.spec.tsx
393
+ RUNS  src/components/Button/Button.spec.tsx
394
+ RUNS  src/components/Typography/Typography.spec.tsx
395
+ RUNS  src/components/Select/Select.spec.tsx
396
+ RUNS  src/components/Tabs/Tabs.spec.tsx
397
+ RUNS  src/components/Accordion/Accordion.spec.tsx
398
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
399
+ RUNS  src/components/Box/Box.spec.tsx
400
+ 
401
+ Test Suites: 0 of 17 total
402
+ Tests: 0 total
403
+ Snapshots: 0 total
404
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
405
+ 
406
+ RUNS  src/components/Toast/Toast.spec.tsx
407
+ RUNS  src/components/Table/Table.spec.tsx
408
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
409
+ RUNS  src/components/Dialog/Dialog.spec.tsx
410
+ RUNS  src/components/Button/Button.spec.tsx
411
+ RUNS  src/components/Typography/Typography.spec.tsx
412
+ RUNS  src/components/Select/Select.spec.tsx
413
+ RUNS  src/components/Tabs/Tabs.spec.tsx
414
+ RUNS  src/components/Accordion/Accordion.spec.tsx
415
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
416
+ RUNS  src/components/Box/Box.spec.tsx
417
+ 
418
+ Test Suites: 0 of 17 total
419
+ Tests: 0 total
420
+ Snapshots: 0 total
421
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
422
+ 
423
+ RUNS  src/components/Toast/Toast.spec.tsx
424
+ RUNS  src/components/Table/Table.spec.tsx
425
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
426
+ RUNS  src/components/Dialog/Dialog.spec.tsx
427
+ RUNS  src/components/Button/Button.spec.tsx
428
+ RUNS  src/components/Typography/Typography.spec.tsx
429
+ RUNS  src/components/Select/Select.spec.tsx
430
+ RUNS  src/components/Tabs/Tabs.spec.tsx
431
+ RUNS  src/components/Accordion/Accordion.spec.tsx
432
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
433
+ RUNS  src/components/Box/Box.spec.tsx
434
+ 
435
+ Test Suites: 0 of 17 total
436
+ Tests: 0 total
437
+ Snapshots: 0 total
438
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (29 ms)
439
+ 
440
+ RUNS  src/components/Toast/Toast.spec.tsx
441
+ RUNS  src/components/Table/Table.spec.tsx
442
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
443
+ RUNS  src/components/Dialog/Dialog.spec.tsx
444
+ RUNS  src/components/Button/Button.spec.tsx
445
+ RUNS  src/components/Typography/Typography.spec.tsx
446
+ RUNS  src/components/Select/Select.spec.tsx
447
+ RUNS  src/components/Tabs/Tabs.spec.tsx
448
+ RUNS  src/components/Accordion/Accordion.spec.tsx
449
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
450
+ RUNS  src/components/Box/Box.spec.tsx
451
+ 
452
+ Test Suites: 0 of 17 total
453
+ Tests: 0 total
454
+ Snapshots: 0 total
455
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
456
+ 
457
+ RUNS  src/components/Toast/Toast.spec.tsx
458
+ RUNS  src/components/Table/Table.spec.tsx
459
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
460
+ RUNS  src/components/Dialog/Dialog.spec.tsx
461
+ RUNS  src/components/Button/Button.spec.tsx
462
+ RUNS  src/components/Typography/Typography.spec.tsx
463
+ RUNS  src/components/Select/Select.spec.tsx
464
+ RUNS  src/components/Tabs/Tabs.spec.tsx
465
+ RUNS  src/components/Accordion/Accordion.spec.tsx
466
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
467
+ RUNS  src/components/Box/Box.spec.tsx
468
+ 
469
+ Test Suites: 0 of 17 total
470
+ Tests: 0 total
471
+ Snapshots: 0 total
472
+ 
473
+ 
474
+ 
475
+ 
476
+ 
477
+ 
478
+ 
479
+ 
480
+ 
481
+ 
482
+ 
483
+ 
484
+ 
485
+ 
486
+ 
487
+ [?25h TabsList UI
488
+ 
489
+ RUNS  src/components/Toast/Toast.spec.tsx
490
+ RUNS  src/components/Table/Table.spec.tsx
491
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
492
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
493
+ RUNS  src/components/Button/Button.spec.tsx 
494
+ RUNS  src/components/Typography/Typography.spec.tsx
495
+ RUNS  src/components/Select/Select.spec.tsx 
496
+ RUNS  src/components/Tabs/Tabs.spec.tsx
497
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
498
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
499
+ RUNS  src/components/Box/Box.spec.tsx
500
+ 
501
+ Test Suites: 0 of 17 total
502
+ Tests: 0 total
503
+ Snapshots: 0 total
504
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (2 ms)
505
+ 
506
+ RUNS  src/components/Toast/Toast.spec.tsx
507
+ RUNS  src/components/Table/Table.spec.tsx
508
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
509
+ RUNS  src/components/Dialog/Dialog.spec.tsx
510
+ RUNS  src/components/Button/Button.spec.tsx
511
+ RUNS  src/components/Typography/Typography.spec.tsx
512
+ RUNS  src/components/Select/Select.spec.tsx
513
+ RUNS  src/components/Tabs/Tabs.spec.tsx
514
+ RUNS  src/components/Accordion/Accordion.spec.tsx
515
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
516
+ RUNS  src/components/Box/Box.spec.tsx
517
+ 
518
+ Test Suites: 0 of 17 total
519
+ Tests: 0 total
520
+ Snapshots: 0 total
521
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
522
+ 
523
+ RUNS  src/components/Toast/Toast.spec.tsx
524
+ RUNS  src/components/Table/Table.spec.tsx
525
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
526
+ RUNS  src/components/Dialog/Dialog.spec.tsx
527
+ RUNS  src/components/Button/Button.spec.tsx
528
+ RUNS  src/components/Typography/Typography.spec.tsx
529
+ RUNS  src/components/Select/Select.spec.tsx
530
+ RUNS  src/components/Tabs/Tabs.spec.tsx
531
+ RUNS  src/components/Accordion/Accordion.spec.tsx
532
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
533
+ RUNS  src/components/Box/Box.spec.tsx
534
+ 
535
+ Test Suites: 0 of 17 total
536
+ Tests: 0 total
537
+ Snapshots: 0 total
538
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
539
+ 
540
+ RUNS  src/components/Toast/Toast.spec.tsx
541
+ RUNS  src/components/Table/Table.spec.tsx
542
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
543
+ RUNS  src/components/Dialog/Dialog.spec.tsx
544
+ RUNS  src/components/Button/Button.spec.tsx
545
+ RUNS  src/components/Typography/Typography.spec.tsx
546
+ RUNS  src/components/Select/Select.spec.tsx
547
+ RUNS  src/components/Tabs/Tabs.spec.tsx
548
+ RUNS  src/components/Accordion/Accordion.spec.tsx
549
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
550
+ RUNS  src/components/Box/Box.spec.tsx
551
+ 
552
+ Test Suites: 0 of 17 total
553
+ Tests: 0 total
554
+ Snapshots: 0 total
555
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
556
+ 
557
+ RUNS  src/components/Toast/Toast.spec.tsx
558
+ RUNS  src/components/Table/Table.spec.tsx
559
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
560
+ RUNS  src/components/Dialog/Dialog.spec.tsx
561
+ RUNS  src/components/Button/Button.spec.tsx
562
+ RUNS  src/components/Typography/Typography.spec.tsx
563
+ RUNS  src/components/Select/Select.spec.tsx
564
+ RUNS  src/components/Tabs/Tabs.spec.tsx
565
+ RUNS  src/components/Accordion/Accordion.spec.tsx
566
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
567
+ RUNS  src/components/Box/Box.spec.tsx
568
+ 
569
+ Test Suites: 0 of 17 total
570
+ Tests: 0 total
571
+ Snapshots: 0 total
572
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
573
+ 
574
+ RUNS  src/components/Toast/Toast.spec.tsx
575
+ RUNS  src/components/Table/Table.spec.tsx
576
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
577
+ RUNS  src/components/Dialog/Dialog.spec.tsx
578
+ RUNS  src/components/Button/Button.spec.tsx
579
+ RUNS  src/components/Typography/Typography.spec.tsx
580
+ RUNS  src/components/Select/Select.spec.tsx
581
+ RUNS  src/components/Tabs/Tabs.spec.tsx
582
+ RUNS  src/components/Accordion/Accordion.spec.tsx
583
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
584
+ RUNS  src/components/Box/Box.spec.tsx
585
+ 
586
+ Test Suites: 0 of 17 total
587
+ Tests: 0 total
588
+ Snapshots: 0 total
589
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
590
+ 
591
+ RUNS  src/components/Toast/Toast.spec.tsx
592
+ RUNS  src/components/Table/Table.spec.tsx
593
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
594
+ RUNS  src/components/Dialog/Dialog.spec.tsx
595
+ RUNS  src/components/Button/Button.spec.tsx
596
+ RUNS  src/components/Typography/Typography.spec.tsx
597
+ RUNS  src/components/Select/Select.spec.tsx
598
+ RUNS  src/components/Tabs/Tabs.spec.tsx
599
+ RUNS  src/components/Accordion/Accordion.spec.tsx
600
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
601
+ RUNS  src/components/Box/Box.spec.tsx
602
+ 
603
+ Test Suites: 0 of 17 total
604
+ Tests: 0 total
605
+ Snapshots: 0 total
606
+ 
607
+ RUNS  src/components/Toast/Toast.spec.tsx
608
+ RUNS  src/components/Table/Table.spec.tsx
609
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
610
+ RUNS  src/components/Dialog/Dialog.spec.tsx
611
+ RUNS  src/components/Button/Button.spec.tsx
612
+ RUNS  src/components/Typography/Typography.spec.tsx
613
+ RUNS  src/components/Select/Select.spec.tsx
614
+ RUNS  src/components/Tabs/Tabs.spec.tsx
615
+ RUNS  src/components/Accordion/Accordion.spec.tsx
616
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
617
+ RUNS  src/components/Box/Box.spec.tsx
618
+ 
619
+ Test Suites: 0 of 17 total
620
+ Tests: 0 total
621
+ Snapshots: 0 total
622
+  RUNS  src/components/Toast/Toast.spec.tsx
623
+ RUNS  src/components/Table/Table.spec.tsx
624
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
625
+ RUNS  src/components/Dialog/Dialog.spec.tsx
626
+ RUNS  src/components/Button/Button.spec.tsx
627
+ RUNS  src/components/Typography/Typography.spec.tsx
628
+ RUNS  src/components/Select/Select.spec.tsx
629
+ RUNS  src/components/Accordion/Accordion.spec.tsx
630
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
631
+ RUNS  src/components/Box/Box.spec.tsx
632
+ RUNS  src/components/Navigation/Navigation.spec.tsx
633
+ 
634
+ Test Suites: 1 passed, 1 of 17 total
635
+ Tests: 15 passed, 15 total
636
+ Snapshots: 0 total
637
+ Time: 9 s[?25h PASS  src/components/Accordion/Accordion.spec.tsx
638
+ 
639
+ RUNS  src/components/Toast/Toast.spec.tsx
640
+ RUNS  src/components/Table/Table.spec.tsx
641
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
642
+ RUNS  src/components/Dialog/Dialog.spec.tsx
643
+ RUNS  src/components/Button/Button.spec.tsx
644
+ RUNS  src/components/Typography/Typography.spec.tsx
645
+ RUNS  src/components/Select/Select.spec.tsx
646
+ RUNS  src/components/Accordion/Accordion.spec.tsx
647
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
648
+ RUNS  src/components/Box/Box.spec.tsx
649
+ RUNS  src/components/Navigation/Navigation.spec.tsx
650
+ 
651
+ Test Suites: 1 passed, 1 of 17 total
652
+ Tests: 15 passed, 15 total
653
+ Snapshots: 0 total
654
+  Accordion ์ปดํฌ๋„ŒํŠธ
655
+ 
656
+ RUNS  src/components/Toast/Toast.spec.tsx
657
+ RUNS  src/components/Table/Table.spec.tsx
658
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
659
+ RUNS  src/components/Dialog/Dialog.spec.tsx
660
+ RUNS  src/components/Button/Button.spec.tsx
661
+ RUNS  src/components/Typography/Typography.spec.tsx
662
+ RUNS  src/components/Select/Select.spec.tsx
663
+ RUNS  src/components/Accordion/Accordion.spec.tsx
664
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
665
+ RUNS  src/components/Box/Box.spec.tsx
666
+ RUNS  src/components/Navigation/Navigation.spec.tsx
667
+ 
668
+ Test Suites: 1 passed, 1 of 17 total
669
+ Tests: 15 passed, 15 total
670
+ Snapshots: 0 total
671
+ 
672
+ 
673
+ 
674
+ 
675
+ 
676
+ 
677
+ 
678
+ 
679
+ 
680
+ 
681
+ 
682
+ 
683
+ 
684
+ 
685
+ 
686
+ [?25h Accordion UI
687
+ 
688
+ RUNS  src/components/Toast/Toast.spec.tsx
689
+ RUNS  src/components/Table/Table.spec.tsx
690
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
691
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
692
+ RUNS  src/components/Button/Button.spec.tsx 
693
+ RUNS  src/components/Typography/Typography.spec.tsx
694
+ RUNS  src/components/Select/Select.spec.tsx 
695
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
696
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
697
+ RUNS  src/components/Box/Box.spec.tsx
698
+ RUNS  src/components/Navigation/Navigation.spec.tsx
699
+ 
700
+ Test Suites: 1 passed, 1 of 17 total
701
+ Tests: 15 passed, 15 total
702
+ Snapshots: 0 total
703
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (41 ms)
704
+ 
705
+ RUNS  src/components/Toast/Toast.spec.tsx
706
+ RUNS  src/components/Table/Table.spec.tsx
707
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
708
+ RUNS  src/components/Dialog/Dialog.spec.tsx
709
+ RUNS  src/components/Button/Button.spec.tsx
710
+ RUNS  src/components/Typography/Typography.spec.tsx
711
+ RUNS  src/components/Select/Select.spec.tsx
712
+ RUNS  src/components/Accordion/Accordion.spec.tsx
713
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
714
+ RUNS  src/components/Box/Box.spec.tsx
715
+ RUNS  src/components/Navigation/Navigation.spec.tsx
716
+ 
717
+ Test Suites: 1 passed, 1 of 17 total
718
+ Tests: 15 passed, 15 total
719
+ Snapshots: 0 total
720
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (6 ms)
721
+ 
722
+ RUNS  src/components/Toast/Toast.spec.tsx
723
+ RUNS  src/components/Table/Table.spec.tsx
724
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
725
+ RUNS  src/components/Dialog/Dialog.spec.tsx
726
+ RUNS  src/components/Button/Button.spec.tsx
727
+ RUNS  src/components/Typography/Typography.spec.tsx
728
+ RUNS  src/components/Select/Select.spec.tsx
729
+ RUNS  src/components/Accordion/Accordion.spec.tsx
730
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
731
+ RUNS  src/components/Box/Box.spec.tsx
732
+ RUNS  src/components/Navigation/Navigation.spec.tsx
733
+ 
734
+ Test Suites: 1 passed, 1 of 17 total
735
+ Tests: 15 passed, 15 total
736
+ Snapshots: 0 total
737
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
738
+ 
739
+ RUNS  src/components/Toast/Toast.spec.tsx
740
+ RUNS  src/components/Table/Table.spec.tsx
741
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
742
+ RUNS  src/components/Dialog/Dialog.spec.tsx
743
+ RUNS  src/components/Button/Button.spec.tsx
744
+ RUNS  src/components/Typography/Typography.spec.tsx
745
+ RUNS  src/components/Select/Select.spec.tsx
746
+ RUNS  src/components/Accordion/Accordion.spec.tsx
747
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
748
+ RUNS  src/components/Box/Box.spec.tsx
749
+ RUNS  src/components/Navigation/Navigation.spec.tsx
750
+ 
751
+ Test Suites: 1 passed, 1 of 17 total
752
+ Tests: 15 passed, 15 total
753
+ Snapshots: 0 total
754
+ 
755
+ 
756
+ 
757
+ 
758
+ 
759
+ 
760
+ 
761
+ 
762
+ 
763
+ 
764
+ 
765
+ 
766
+ 
767
+ 
768
+ 
769
+ [?25h โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
770
+ 
771
+ RUNS  src/components/Toast/Toast.spec.tsx
772
+ RUNS  src/components/Table/Table.spec.tsx
773
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
774
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
775
+ RUNS  src/components/Button/Button.spec.tsx 
776
+ RUNS  src/components/Typography/Typography.spec.tsx
777
+ RUNS  src/components/Select/Select.spec.tsx 
778
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
779
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
780
+ RUNS  src/components/Box/Box.spec.tsx
781
+ RUNS  src/components/Navigation/Navigation.spec.tsx
782
+ 
783
+ Test Suites: 1 passed, 1 of 17 total
784
+ Tests: 15 passed, 15 total
785
+ Snapshots: 0 total
786
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (28 ms)
787
+ 
788
+ RUNS  src/components/Toast/Toast.spec.tsx
789
+ RUNS  src/components/Table/Table.spec.tsx
790
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
791
+ RUNS  src/components/Dialog/Dialog.spec.tsx
792
+ RUNS  src/components/Button/Button.spec.tsx
793
+ RUNS  src/components/Typography/Typography.spec.tsx
794
+ RUNS  src/components/Select/Select.spec.tsx
795
+ RUNS  src/components/Accordion/Accordion.spec.tsx
796
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
797
+ RUNS  src/components/Box/Box.spec.tsx
798
+ RUNS  src/components/Navigation/Navigation.spec.tsx
799
+ 
800
+ Test Suites: 1 passed, 1 of 17 total
801
+ Tests: 15 passed, 15 total
802
+ Snapshots: 0 total
803
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
804
+ 
805
+ RUNS  src/components/Toast/Toast.spec.tsx
806
+ RUNS  src/components/Table/Table.spec.tsx
807
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
808
+ RUNS  src/components/Dialog/Dialog.spec.tsx
809
+ RUNS  src/components/Button/Button.spec.tsx
810
+ RUNS  src/components/Typography/Typography.spec.tsx
811
+ RUNS  src/components/Select/Select.spec.tsx
812
+ RUNS  src/components/Accordion/Accordion.spec.tsx
813
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
814
+ RUNS  src/components/Box/Box.spec.tsx
815
+ RUNS  src/components/Navigation/Navigation.spec.tsx
816
+ 
817
+ Test Suites: 1 passed, 1 of 17 total
818
+ Tests: 15 passed, 15 total
819
+ Snapshots: 0 total
820
+ 
821
+ RUNS  src/components/Toast/Toast.spec.tsx
822
+ RUNS  src/components/Table/Table.spec.tsx
823
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
824
+ RUNS  src/components/Dialog/Dialog.spec.tsx
825
+ RUNS  src/components/Button/Button.spec.tsx
826
+ RUNS  src/components/Typography/Typography.spec.tsx
827
+ RUNS  src/components/Select/Select.spec.tsx
828
+ RUNS  src/components/Accordion/Accordion.spec.tsx
829
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
830
+ RUNS  src/components/Box/Box.spec.tsx
831
+ RUNS  src/components/Navigation/Navigation.spec.tsx
832
+ 
833
+ Test Suites: 1 passed, 1 of 17 total
834
+ Tests: 15 passed, 15 total
835
+ Snapshots: 0 total
836
+  PASS  src/components/Box/Box.spec.tsx
837
+ 
838
+ RUNS  src/components/Toast/Toast.spec.tsx
839
+ RUNS  src/components/Table/Table.spec.tsx
840
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
841
+ RUNS  src/components/Dialog/Dialog.spec.tsx
842
+ RUNS  src/components/Button/Button.spec.tsx
843
+ RUNS  src/components/Typography/Typography.spec.tsx
844
+ RUNS  src/components/Select/Select.spec.tsx
845
+ RUNS  src/components/Accordion/Accordion.spec.tsx
846
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
847
+ RUNS  src/components/Box/Box.spec.tsx
848
+ RUNS  src/components/Navigation/Navigation.spec.tsx
849
+ 
850
+ Test Suites: 1 passed, 1 of 17 total
851
+ Tests: 15 passed, 15 total
852
+ Snapshots: 0 total
853
+  Box ์ปดํฌ๋„ŒํŠธ
854
+ 
855
+ RUNS  src/components/Toast/Toast.spec.tsx
856
+ RUNS  src/components/Table/Table.spec.tsx
857
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
858
+ RUNS  src/components/Dialog/Dialog.spec.tsx
859
+ RUNS  src/components/Button/Button.spec.tsx
860
+ RUNS  src/components/Typography/Typography.spec.tsx
861
+ RUNS  src/components/Select/Select.spec.tsx
862
+ RUNS  src/components/Accordion/Accordion.spec.tsx
863
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
864
+ RUNS  src/components/Box/Box.spec.tsx
865
+ RUNS  src/components/Navigation/Navigation.spec.tsx
866
+ 
867
+ Test Suites: 1 passed, 1 of 17 total
868
+ Tests: 15 passed, 15 total
869
+ Snapshots: 0 total
870
+  Box UI
871
+ 
872
+ RUNS  src/components/Toast/Toast.spec.tsx
873
+ RUNS  src/components/Table/Table.spec.tsx
874
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
875
+ RUNS  src/components/Dialog/Dialog.spec.tsx
876
+ RUNS  src/components/Button/Button.spec.tsx
877
+ RUNS  src/components/Typography/Typography.spec.tsx
878
+ RUNS  src/components/Select/Select.spec.tsx
879
+ RUNS  src/components/Accordion/Accordion.spec.tsx
880
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
881
+ RUNS  src/components/Box/Box.spec.tsx
882
+ RUNS  src/components/Navigation/Navigation.spec.tsx
883
+ 
884
+ Test Suites: 1 passed, 1 of 17 total
885
+ Tests: 15 passed, 15 total
886
+ Snapshots: 0 total
887
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (38 ms)
888
+ 
889
+ RUNS  src/components/Toast/Toast.spec.tsx
890
+ RUNS  src/components/Table/Table.spec.tsx
891
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
892
+ RUNS  src/components/Dialog/Dialog.spec.tsx
893
+ RUNS  src/components/Button/Button.spec.tsx
894
+ RUNS  src/components/Typography/Typography.spec.tsx
895
+ RUNS  src/components/Select/Select.spec.tsx
896
+ RUNS  src/components/Accordion/Accordion.spec.tsx
897
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
898
+ RUNS  src/components/Box/Box.spec.tsx
899
+ RUNS  src/components/Navigation/Navigation.spec.tsx
900
+ 
901
+ Test Suites: 1 passed, 1 of 17 total
902
+ Tests: 15 passed, 15 total
903
+ Snapshots: 0 total
904
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (5 ms)
905
+ 
906
+ RUNS  src/components/Toast/Toast.spec.tsx
907
+ RUNS  src/components/Table/Table.spec.tsx
908
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
909
+ RUNS  src/components/Dialog/Dialog.spec.tsx
910
+ RUNS  src/components/Button/Button.spec.tsx
911
+ RUNS  src/components/Typography/Typography.spec.tsx
912
+ RUNS  src/components/Select/Select.spec.tsx
913
+ RUNS  src/components/Accordion/Accordion.spec.tsx
914
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
915
+ RUNS  src/components/Box/Box.spec.tsx
916
+ RUNS  src/components/Navigation/Navigation.spec.tsx
917
+ 
918
+ Test Suites: 1 passed, 1 of 17 total
919
+ Tests: 15 passed, 15 total
920
+ Snapshots: 0 total
921
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
922
+ 
923
+ RUNS  src/components/Toast/Toast.spec.tsx
924
+ RUNS  src/components/Table/Table.spec.tsx
925
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
926
+ RUNS  src/components/Dialog/Dialog.spec.tsx
927
+ RUNS  src/components/Button/Button.spec.tsx
928
+ RUNS  src/components/Typography/Typography.spec.tsx
929
+ RUNS  src/components/Select/Select.spec.tsx
930
+ RUNS  src/components/Accordion/Accordion.spec.tsx
931
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
932
+ RUNS  src/components/Box/Box.spec.tsx
933
+ RUNS  src/components/Navigation/Navigation.spec.tsx
934
+ 
935
+ Test Suites: 1 passed, 1 of 17 total
936
+ Tests: 15 passed, 15 total
937
+ Snapshots: 0 total
938
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
939
+ 
940
+ RUNS  src/components/Toast/Toast.spec.tsx
941
+ RUNS  src/components/Table/Table.spec.tsx
942
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
943
+ RUNS  src/components/Dialog/Dialog.spec.tsx
944
+ RUNS  src/components/Button/Button.spec.tsx
945
+ RUNS  src/components/Typography/Typography.spec.tsx
946
+ RUNS  src/components/Select/Select.spec.tsx
947
+ RUNS  src/components/Accordion/Accordion.spec.tsx
948
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
949
+ RUNS  src/components/Box/Box.spec.tsx
950
+ RUNS  src/components/Navigation/Navigation.spec.tsx
951
+ 
952
+ Test Suites: 1 passed, 1 of 17 total
953
+ Tests: 15 passed, 15 total
954
+ Snapshots: 0 total
955
+ 
956
+ 
957
+ 
958
+ 
959
+ 
960
+ 
961
+ 
962
+ 
963
+ 
964
+ 
965
+ 
966
+ 
967
+ 
968
+ 
969
+ 
970
+ [?25h โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (30 ms)
971
+ 
972
+ RUNS  src/components/Toast/Toast.spec.tsx
973
+ RUNS  src/components/Table/Table.spec.tsx
974
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
975
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
976
+ RUNS  src/components/Button/Button.spec.tsx 
977
+ RUNS  src/components/Typography/Typography.spec.tsx
978
+ RUNS  src/components/Select/Select.spec.tsx 
979
+ RUNS  src/components/Accordion/Accordion.spec.tsx 
980
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
981
+ RUNS  src/components/Box/Box.spec.tsx
982
+ RUNS  src/components/Navigation/Navigation.spec.tsx
983
+ 
984
+ Test Suites: 1 passed, 1 of 17 total
985
+ Tests: 15 passed, 15 total
986
+ Snapshots: 0 total
987
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
988
+ 
989
+ RUNS  src/components/Toast/Toast.spec.tsx
990
+ RUNS  src/components/Table/Table.spec.tsx
991
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
992
+ RUNS  src/components/Dialog/Dialog.spec.tsx
993
+ RUNS  src/components/Button/Button.spec.tsx
994
+ RUNS  src/components/Typography/Typography.spec.tsx
995
+ RUNS  src/components/Select/Select.spec.tsx
996
+ RUNS  src/components/Accordion/Accordion.spec.tsx
997
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
998
+ RUNS  src/components/Box/Box.spec.tsx
999
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1000
+ 
1001
+ Test Suites: 1 passed, 1 of 17 total
1002
+ Tests: 15 passed, 15 total
1003
+ Snapshots: 0 total
1004
+ 
1005
+ RUNS  src/components/Toast/Toast.spec.tsx
1006
+ RUNS  src/components/Table/Table.spec.tsx
1007
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1008
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1009
+ RUNS  src/components/Button/Button.spec.tsx
1010
+ RUNS  src/components/Typography/Typography.spec.tsx
1011
+ RUNS  src/components/Select/Select.spec.tsx
1012
+ RUNS  src/components/Accordion/Accordion.spec.tsx
1013
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1014
+ RUNS  src/components/Box/Box.spec.tsx
1015
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1016
+ 
1017
+ Test Suites: 1 passed, 1 of 17 total
1018
+ Tests: 15 passed, 15 total
1019
+ Snapshots: 0 total
1020
+ Time: 9 s
1021
+ 
1022
+ 
1023
+ 
1024
+ 
1025
+ 
1026
+ 
1027
+ 
1028
+ 
1029
+ 
1030
+ 
1031
+ 
1032
+ 
1033
+ 
1034
+ 
1035
+ [?25h
1036
+ RUNS  src/components/Toast/Toast.spec.tsx
1037
+ RUNS  src/components/Table/Table.spec.tsx
1038
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
1039
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
1040
+ RUNS  src/components/Button/Button.spec.tsx 
1041
+ RUNS  src/components/Typography/Typography.spec.tsx
1042
+ RUNS  src/components/Select/Select.spec.tsx 
1043
+ RUNS  src/components/Card/Card.spec.tsx
1044
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
1045
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1046
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1047
+ 
1048
+ Test Suites: 3 passed, 3 of 17 total
1049
+ Tests: 27 passed, 27 total
1050
+ Snapshots: 0 total
1051
+ Time: 9 s
1052
+ 
1053
+ 
1054
+ 
1055
+ 
1056
+ 
1057
+ 
1058
+ 
1059
+ 
1060
+ 
1061
+ 
1062
+ 
1063
+ 
1064
+ 
1065
+ 
1066
+ [?25h PASS  src/components/ScrollArea/ScrollArea.spec.tsx
1067
+ 
1068
+ RUNS  src/components/Toast/Toast.spec.tsx
1069
+ RUNS  src/components/Table/Table.spec.tsx
1070
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
1071
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
1072
+ RUNS  src/components/Button/Button.spec.tsx 
1073
+ RUNS  src/components/Typography/Typography.spec.tsx
1074
+ RUNS  src/components/Select/Select.spec.tsx 
1075
+ RUNS  src/components/Card/Card.spec.tsx
1076
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
1077
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1078
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1079
+ 
1080
+ Test Suites: 3 passed, 3 of 17 total
1081
+ Tests: 27 passed, 27 total
1082
+ Snapshots: 0 total
1083
+  ScrollArea ์ปดํฌ๋„ŒํŠธ
1084
+ 
1085
+ RUNS  src/components/Toast/Toast.spec.tsx
1086
+ RUNS  src/components/Table/Table.spec.tsx
1087
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1088
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1089
+ RUNS  src/components/Button/Button.spec.tsx
1090
+ RUNS  src/components/Typography/Typography.spec.tsx
1091
+ RUNS  src/components/Select/Select.spec.tsx
1092
+ RUNS  src/components/Card/Card.spec.tsx
1093
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1094
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1095
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1096
+ 
1097
+ Test Suites: 3 passed, 3 of 17 total
1098
+ Tests: 27 passed, 27 total
1099
+ Snapshots: 0 total
1100
+  ScrollArea UI
1101
+ 
1102
+ RUNS  src/components/Toast/Toast.spec.tsx
1103
+ RUNS  src/components/Table/Table.spec.tsx
1104
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1105
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1106
+ RUNS  src/components/Button/Button.spec.tsx
1107
+ RUNS  src/components/Typography/Typography.spec.tsx
1108
+ RUNS  src/components/Select/Select.spec.tsx
1109
+ RUNS  src/components/Card/Card.spec.tsx
1110
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1111
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1112
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1113
+ 
1114
+ Test Suites: 3 passed, 3 of 17 total
1115
+ Tests: 27 passed, 27 total
1116
+ Snapshots: 0 total
1117
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (54 ms)
1118
+ 
1119
+ RUNS  src/components/Toast/Toast.spec.tsx
1120
+ RUNS  src/components/Table/Table.spec.tsx
1121
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1122
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1123
+ RUNS  src/components/Button/Button.spec.tsx
1124
+ RUNS  src/components/Typography/Typography.spec.tsx
1125
+ RUNS  src/components/Select/Select.spec.tsx
1126
+ RUNS  src/components/Card/Card.spec.tsx
1127
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1128
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1129
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1130
+ 
1131
+ Test Suites: 3 passed, 3 of 17 total
1132
+ Tests: 27 passed, 27 total
1133
+ Snapshots: 0 total
1134
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (8 ms)
1135
+ 
1136
+ RUNS  src/components/Toast/Toast.spec.tsx
1137
+ RUNS  src/components/Table/Table.spec.tsx
1138
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1139
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1140
+ RUNS  src/components/Button/Button.spec.tsx
1141
+ RUNS  src/components/Typography/Typography.spec.tsx
1142
+ RUNS  src/components/Select/Select.spec.tsx
1143
+ RUNS  src/components/Card/Card.spec.tsx
1144
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1145
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1146
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1147
+ 
1148
+ Test Suites: 3 passed, 3 of 17 total
1149
+ Tests: 27 passed, 27 total
1150
+ Snapshots: 0 total
1151
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (7 ms)
1152
+ 
1153
+ RUNS  src/components/Toast/Toast.spec.tsx
1154
+ RUNS  src/components/Table/Table.spec.tsx
1155
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1156
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1157
+ RUNS  src/components/Button/Button.spec.tsx
1158
+ RUNS  src/components/Typography/Typography.spec.tsx
1159
+ RUNS  src/components/Select/Select.spec.tsx
1160
+ RUNS  src/components/Card/Card.spec.tsx
1161
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1162
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1163
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1164
+ 
1165
+ Test Suites: 3 passed, 3 of 17 total
1166
+ Tests: 27 passed, 27 total
1167
+ Snapshots: 0 total
1168
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
1169
+ 
1170
+ RUNS  src/components/Toast/Toast.spec.tsx
1171
+ RUNS  src/components/Table/Table.spec.tsx
1172
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1173
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1174
+ RUNS  src/components/Button/Button.spec.tsx
1175
+ RUNS  src/components/Typography/Typography.spec.tsx
1176
+ RUNS  src/components/Select/Select.spec.tsx
1177
+ RUNS  src/components/Card/Card.spec.tsx
1178
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1179
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1180
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1181
+ 
1182
+ Test Suites: 3 passed, 3 of 17 total
1183
+ Tests: 27 passed, 27 total
1184
+ Snapshots: 0 total
1185
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (31 ms)
1186
+ 
1187
+ RUNS  src/components/Toast/Toast.spec.tsx
1188
+ RUNS  src/components/Table/Table.spec.tsx
1189
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1190
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1191
+ RUNS  src/components/Button/Button.spec.tsx
1192
+ RUNS  src/components/Typography/Typography.spec.tsx
1193
+ RUNS  src/components/Select/Select.spec.tsx
1194
+ RUNS  src/components/Card/Card.spec.tsx
1195
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1196
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1197
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1198
+ 
1199
+ Test Suites: 3 passed, 3 of 17 total
1200
+ Tests: 27 passed, 27 total
1201
+ Snapshots: 0 total
1202
+ Time: 9 s โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
1203
+ 
1204
+ RUNS  src/components/Toast/Toast.spec.tsx
1205
+ RUNS  src/components/Table/Table.spec.tsx
1206
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1207
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1208
+ RUNS  src/components/Button/Button.spec.tsx
1209
+ RUNS  src/components/Typography/Typography.spec.tsx
1210
+ RUNS  src/components/Select/Select.spec.tsx
1211
+ RUNS  src/components/Card/Card.spec.tsx
1212
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1213
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1214
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1215
+ 
1216
+ Test Suites: 3 passed, 3 of 17 total
1217
+ Tests: 27 passed, 27 total
1218
+ Snapshots: 0 total
1219
+ 
1220
+ RUNS  src/components/Toast/Toast.spec.tsx
1221
+ RUNS  src/components/Table/Table.spec.tsx
1222
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1223
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1224
+ RUNS  src/components/Button/Button.spec.tsx
1225
+ RUNS  src/components/Typography/Typography.spec.tsx
1226
+ RUNS  src/components/Select/Select.spec.tsx
1227
+ RUNS  src/components/Card/Card.spec.tsx
1228
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1229
+ RUNS  src/components/ScrollArea/ScrollArea.spec.tsx
1230
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1231
+ 
1232
+ Test Suites: 3 passed, 3 of 17 total
1233
+ Tests: 27 passed, 27 total
1234
+ Snapshots: 0 total
1235
+ Time: 9 s
1236
+ 
1237
+ 
1238
+ 
1239
+ 
1240
+ 
1241
+ 
1242
+ 
1243
+ 
1244
+ 
1245
+ 
1246
+ 
1247
+ 
1248
+ 
1249
+ 
1250
+ [?25h PASS  src/components/Select/Select.spec.tsx
1251
+ 
1252
+ RUNS  src/components/Toast/Toast.spec.tsx
1253
+ RUNS  src/components/Table/Table.spec.tsx
1254
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1255
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1256
+ RUNS  src/components/Button/Button.spec.tsx
1257
+ RUNS  src/components/Typography/Typography.spec.tsx
1258
+ RUNS  src/components/Select/Select.spec.tsx
1259
+ RUNS  src/components/Card/Card.spec.tsx
1260
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1261
+ RUNS  src/components/Range/Range.spec.tsx
1262
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1263
+ 
1264
+ Test Suites: 4 passed, 4 of 17 total
1265
+ Tests: 40 passed, 40 total
1266
+ Snapshots: 0 total
1267
+  Select ์ปดํฌ๋„ŒํŠธ
1268
+ 
1269
+ RUNS  src/components/Toast/Toast.spec.tsx
1270
+ RUNS  src/components/Table/Table.spec.tsx
1271
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1272
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1273
+ RUNS  src/components/Button/Button.spec.tsx
1274
+ RUNS  src/components/Typography/Typography.spec.tsx
1275
+ RUNS  src/components/Select/Select.spec.tsx
1276
+ RUNS  src/components/Card/Card.spec.tsx
1277
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1278
+ RUNS  src/components/Range/Range.spec.tsx
1279
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1280
+ 
1281
+ Test Suites: 4 passed, 4 of 17 total
1282
+ Tests: 40 passed, 40 total
1283
+ Snapshots: 0 total
1284
+  โˆš ํด๋ฆญํ•œ option์˜ ๋‚ด์šฉ์ด Select์— ๋ณด์ธ๋‹ค. (24 ms)
1285
+ 
1286
+ RUNS  src/components/Toast/Toast.spec.tsx
1287
+ RUNS  src/components/Table/Table.spec.tsx
1288
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1289
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1290
+ RUNS  src/components/Button/Button.spec.tsx
1291
+ RUNS  src/components/Typography/Typography.spec.tsx
1292
+ RUNS  src/components/Select/Select.spec.tsx
1293
+ RUNS  src/components/Card/Card.spec.tsx
1294
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1295
+ RUNS  src/components/Range/Range.spec.tsx
1296
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1297
+ 
1298
+ Test Suites: 4 passed, 4 of 17 total
1299
+ Tests: 40 passed, 40 total
1300
+ Snapshots: 0 total
1301
+  โˆš ์ƒˆ๋กœ์šด option์„ ํด๋ฆญํ•˜๋ฉด onChange ์ด๋ฒคํŠธ๊ฐ€ ๋ฐœ์ƒํ•˜๊ณ , form value, ref.value์˜ ๊ฐ’์ด ๋ฐ”๋€๋‹ค. (20 ms)
1302
+ 
1303
+ 
1304
+ 
1305
+ 
1306
+ 
1307
+ 
1308
+ 
1309
+ 
1310
+ 
1311
+ 
1312
+ 
1313
+ 
1314
+ 
1315
+ 
1316
+ 
1317
+ [?25h
1318
+ RUNS  src/components/Toast/Toast.spec.tsx
1319
+ RUNS  src/components/Table/Table.spec.tsx
1320
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
1321
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
1322
+ RUNS  src/components/Button/Button.spec.tsx 
1323
+ RUNS  src/components/Typography/Typography.spec.tsx
1324
+ RUNS  src/components/Select/Select.spec.tsx 
1325
+ RUNS  src/components/Card/Card.spec.tsx
1326
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
1327
+ RUNS  src/components/Range/Range.spec.tsx
1328
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1329
+ 
1330
+ Test Suites: 4 passed, 4 of 17 total
1331
+ Tests: 40 passed, 40 total
1332
+ Snapshots: 0 total
1333
+  โˆš defaultValue์˜ ๊ฐ’์ด ๊ธฐ๋ณธ์œผ๋กœ ๋ณด์ธ๋‹ค. (5 ms)
1334
+ 
1335
+ RUNS  src/components/Toast/Toast.spec.tsx
1336
+ RUNS  src/components/Table/Table.spec.tsx
1337
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1338
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1339
+ RUNS  src/components/Button/Button.spec.tsx
1340
+ RUNS  src/components/Typography/Typography.spec.tsx
1341
+ RUNS  src/components/Select/Select.spec.tsx
1342
+ RUNS  src/components/Card/Card.spec.tsx
1343
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1344
+ RUNS  src/components/Range/Range.spec.tsx
1345
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1346
+ 
1347
+ Test Suites: 4 passed, 4 of 17 total
1348
+ Tests: 40 passed, 40 total
1349
+ Snapshots: 0 total
1350
+  Select UI
1351
+ 
1352
+ RUNS  src/components/Toast/Toast.spec.tsx
1353
+ RUNS  src/components/Table/Table.spec.tsx
1354
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1355
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1356
+ RUNS  src/components/Button/Button.spec.tsx
1357
+ RUNS  src/components/Typography/Typography.spec.tsx
1358
+ RUNS  src/components/Select/Select.spec.tsx
1359
+ RUNS  src/components/Card/Card.spec.tsx
1360
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1361
+ RUNS  src/components/Range/Range.spec.tsx
1362
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1363
+ 
1364
+ Test Suites: 4 passed, 4 of 17 total
1365
+ Tests: 40 passed, 40 total
1366
+ Snapshots: 0 total
1367
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (83 ms)
1368
+ 
1369
+ RUNS  src/components/Toast/Toast.spec.tsx
1370
+ RUNS  src/components/Table/Table.spec.tsx
1371
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1372
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1373
+ RUNS  src/components/Button/Button.spec.tsx
1374
+ RUNS  src/components/Typography/Typography.spec.tsx
1375
+ RUNS  src/components/Select/Select.spec.tsx
1376
+ RUNS  src/components/Card/Card.spec.tsx
1377
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1378
+ RUNS  src/components/Range/Range.spec.tsx
1379
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1380
+ 
1381
+ Test Suites: 4 passed, 4 of 17 total
1382
+ Tests: 40 passed, 40 total
1383
+ Snapshots: 0 total
1384
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (9 ms)
1385
+ 
1386
+ RUNS  src/components/Toast/Toast.spec.tsx
1387
+ RUNS  src/components/Table/Table.spec.tsx
1388
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1389
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1390
+ RUNS  src/components/Button/Button.spec.tsx
1391
+ RUNS  src/components/Typography/Typography.spec.tsx
1392
+ RUNS  src/components/Select/Select.spec.tsx
1393
+ RUNS  src/components/Card/Card.spec.tsx
1394
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1395
+ RUNS  src/components/Range/Range.spec.tsx
1396
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1397
+ 
1398
+ Test Suites: 4 passed, 4 of 17 total
1399
+ Tests: 40 passed, 40 total
1400
+ Snapshots: 0 total
1401
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (6 ms)
1402
+ 
1403
+ RUNS  src/components/Toast/Toast.spec.tsx
1404
+ RUNS  src/components/Table/Table.spec.tsx
1405
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1406
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1407
+ RUNS  src/components/Button/Button.spec.tsx
1408
+ RUNS  src/components/Typography/Typography.spec.tsx
1409
+ RUNS  src/components/Select/Select.spec.tsx
1410
+ RUNS  src/components/Card/Card.spec.tsx
1411
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1412
+ RUNS  src/components/Range/Range.spec.tsx
1413
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1414
+ 
1415
+ Test Suites: 4 passed, 4 of 17 total
1416
+ Tests: 40 passed, 40 total
1417
+ Snapshots: 0 total
1418
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (6 ms)
1419
+ 
1420
+ RUNS  src/components/Toast/Toast.spec.tsx
1421
+ RUNS  src/components/Table/Table.spec.tsx
1422
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1423
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1424
+ RUNS  src/components/Button/Button.spec.tsx
1425
+ RUNS  src/components/Typography/Typography.spec.tsx
1426
+ RUNS  src/components/Select/Select.spec.tsx
1427
+ RUNS  src/components/Card/Card.spec.tsx
1428
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1429
+ RUNS  src/components/Range/Range.spec.tsx
1430
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1431
+ 
1432
+ Test Suites: 4 passed, 4 of 17 total
1433
+ Tests: 40 passed, 40 total
1434
+ Snapshots: 0 total
1435
+ Time: 10 s โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (34 ms)
1436
+ 
1437
+ RUNS  src/components/Toast/Toast.spec.tsx
1438
+ RUNS  src/components/Table/Table.spec.tsx
1439
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1440
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1441
+ RUNS  src/components/Button/Button.spec.tsx
1442
+ RUNS  src/components/Typography/Typography.spec.tsx
1443
+ RUNS  src/components/Select/Select.spec.tsx
1444
+ RUNS  src/components/Card/Card.spec.tsx
1445
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1446
+ RUNS  src/components/Range/Range.spec.tsx
1447
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1448
+ 
1449
+ Test Suites: 4 passed, 4 of 17 total
1450
+ Tests: 40 passed, 40 total
1451
+ Snapshots: 0 total
1452
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (5 ms)
1453
+ 
1454
+ RUNS  src/components/Toast/Toast.spec.tsx
1455
+ RUNS  src/components/Table/Table.spec.tsx
1456
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1457
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1458
+ RUNS  src/components/Button/Button.spec.tsx
1459
+ RUNS  src/components/Typography/Typography.spec.tsx
1460
+ RUNS  src/components/Select/Select.spec.tsx
1461
+ RUNS  src/components/Card/Card.spec.tsx
1462
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1463
+ RUNS  src/components/Range/Range.spec.tsx
1464
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1465
+ 
1466
+ Test Suites: 4 passed, 4 of 17 total
1467
+ Tests: 40 passed, 40 total
1468
+ Snapshots: 0 total
1469
+ 
1470
+ RUNS  src/components/Toast/Toast.spec.tsx
1471
+ RUNS  src/components/Table/Table.spec.tsx
1472
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1473
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1474
+ RUNS  src/components/Button/Button.spec.tsx
1475
+ RUNS  src/components/Typography/Typography.spec.tsx
1476
+ RUNS  src/components/Select/Select.spec.tsx
1477
+ RUNS  src/components/Card/Card.spec.tsx
1478
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1479
+ RUNS  src/components/Range/Range.spec.tsx
1480
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1481
+ 
1482
+ Test Suites: 4 passed, 4 of 17 total
1483
+ Tests: 40 passed, 40 total
1484
+ Snapshots: 0 total
1485
+ Time: 10 s
1486
+ 
1487
+ 
1488
+ 
1489
+ 
1490
+ 
1491
+ 
1492
+ 
1493
+ 
1494
+ 
1495
+ 
1496
+ 
1497
+ 
1498
+ 
1499
+ 
1500
+ [?25h
1501
+ RUNS  src/components/Toast/Toast.spec.tsx
1502
+ RUNS  src/components/Table/Table.spec.tsx
1503
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
1504
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
1505
+ RUNS  src/components/Button/Button.spec.tsx 
1506
+ RUNS  src/components/Typography/Typography.spec.tsx
1507
+ RUNS  src/components/Card/Card.spec.tsx
1508
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
1509
+ RUNS  src/components/TextField/TextField.spec.tsx 
1510
+ RUNS  src/components/Range/Range.spec.tsx
1511
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1512
+ 
1513
+ Test Suites: 5 passed, 5 of 17 total
1514
+ Tests: 45 passed, 45 total
1515
+ Snapshots: 0 total
1516
+ Time: 10 s
1517
+ 
1518
+ 
1519
+ 
1520
+ 
1521
+ 
1522
+ 
1523
+ 
1524
+ 
1525
+ 
1526
+ 
1527
+ 
1528
+ 
1529
+ 
1530
+ 
1531
+ [?25h PASS  src/components/Dialog/Dialog.spec.tsx
1532
+ 
1533
+ RUNS  src/components/Toast/Toast.spec.tsx
1534
+ RUNS  src/components/Table/Table.spec.tsx
1535
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
1536
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
1537
+ RUNS  src/components/Button/Button.spec.tsx 
1538
+ RUNS  src/components/Typography/Typography.spec.tsx
1539
+ RUNS  src/components/Card/Card.spec.tsx
1540
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
1541
+ RUNS  src/components/TextField/TextField.spec.tsx 
1542
+ RUNS  src/components/Range/Range.spec.tsx
1543
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1544
+ 
1545
+ Test Suites: 5 passed, 5 of 17 total
1546
+ Tests: 45 passed, 45 total
1547
+ Snapshots: 0 total
1548
+  Dialog ์ปดํฌ๋„ŒํŠธ
1549
+ 
1550
+ RUNS  src/components/Toast/Toast.spec.tsx
1551
+ RUNS  src/components/Table/Table.spec.tsx
1552
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1553
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1554
+ RUNS  src/components/Button/Button.spec.tsx
1555
+ RUNS  src/components/Typography/Typography.spec.tsx
1556
+ RUNS  src/components/Card/Card.spec.tsx
1557
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1558
+ RUNS  src/components/TextField/TextField.spec.tsx
1559
+ RUNS  src/components/Range/Range.spec.tsx
1560
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1561
+ 
1562
+ Test Suites: 5 passed, 5 of 17 total
1563
+ Tests: 45 passed, 45 total
1564
+ Snapshots: 0 total
1565
+  โˆš DialogHeader์˜ ๋‹ซ๊ธฐ ๋ฒ„ํŠผ์„ ํด๋ฆญํ•˜๋ฉด onCloseClick์ด ํ˜ธ์ถœ๋˜์–ด์•ผ ํ•œ๋‹ค (29 ms)
1566
+ 
1567
+ RUNS  src/components/Toast/Toast.spec.tsx
1568
+ RUNS  src/components/Table/Table.spec.tsx
1569
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1570
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1571
+ RUNS  src/components/Button/Button.spec.tsx
1572
+ RUNS  src/components/Typography/Typography.spec.tsx
1573
+ RUNS  src/components/Card/Card.spec.tsx
1574
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1575
+ RUNS  src/components/TextField/TextField.spec.tsx
1576
+ RUNS  src/components/Range/Range.spec.tsx
1577
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1578
+ 
1579
+ Test Suites: 5 passed, 5 of 17 total
1580
+ Tests: 45 passed, 45 total
1581
+ Snapshots: 0 total
1582
+  Dialog UI
1583
+ 
1584
+ RUNS  src/components/Toast/Toast.spec.tsx
1585
+ RUNS  src/components/Table/Table.spec.tsx
1586
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1587
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1588
+ RUNS  src/components/Button/Button.spec.tsx
1589
+ RUNS  src/components/Typography/Typography.spec.tsx
1590
+ RUNS  src/components/Card/Card.spec.tsx
1591
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1592
+ RUNS  src/components/TextField/TextField.spec.tsx
1593
+ RUNS  src/components/Range/Range.spec.tsx
1594
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1595
+ 
1596
+ Test Suites: 5 passed, 5 of 17 total
1597
+ Tests: 45 passed, 45 total
1598
+ Snapshots: 0 total
1599
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (53 ms)
1600
+ 
1601
+ RUNS  src/components/Toast/Toast.spec.tsx
1602
+ RUNS  src/components/Table/Table.spec.tsx
1603
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1604
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1605
+ RUNS  src/components/Button/Button.spec.tsx
1606
+ RUNS  src/components/Typography/Typography.spec.tsx
1607
+ RUNS  src/components/Card/Card.spec.tsx
1608
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1609
+ RUNS  src/components/TextField/TextField.spec.tsx
1610
+ RUNS  src/components/Range/Range.spec.tsx
1611
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1612
+ 
1613
+ Test Suites: 5 passed, 5 of 17 total
1614
+ Tests: 45 passed, 45 total
1615
+ Snapshots: 0 total
1616
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (5 ms)
1617
+ 
1618
+ RUNS  src/components/Toast/Toast.spec.tsx
1619
+ RUNS  src/components/Table/Table.spec.tsx
1620
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1621
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1622
+ RUNS  src/components/Button/Button.spec.tsx
1623
+ RUNS  src/components/Typography/Typography.spec.tsx
1624
+ RUNS  src/components/Card/Card.spec.tsx
1625
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1626
+ RUNS  src/components/TextField/TextField.spec.tsx
1627
+ RUNS  src/components/Range/Range.spec.tsx
1628
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1629
+ 
1630
+ Test Suites: 5 passed, 5 of 17 total
1631
+ Tests: 45 passed, 45 total
1632
+ Snapshots: 0 total
1633
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (5 ms)
1634
+ 
1635
+ RUNS  src/components/Toast/Toast.spec.tsx
1636
+ RUNS  src/components/Table/Table.spec.tsx
1637
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1638
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1639
+ RUNS  src/components/Button/Button.spec.tsx
1640
+ RUNS  src/components/Typography/Typography.spec.tsx
1641
+ RUNS  src/components/Card/Card.spec.tsx
1642
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1643
+ RUNS  src/components/TextField/TextField.spec.tsx
1644
+ RUNS  src/components/Range/Range.spec.tsx
1645
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1646
+ 
1647
+ Test Suites: 5 passed, 5 of 17 total
1648
+ Tests: 45 passed, 45 total
1649
+ Snapshots: 0 total
1650
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
1651
+ 
1652
+ RUNS  src/components/Toast/Toast.spec.tsx
1653
+ RUNS  src/components/Table/Table.spec.tsx
1654
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1655
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1656
+ RUNS  src/components/Button/Button.spec.tsx
1657
+ RUNS  src/components/Typography/Typography.spec.tsx
1658
+ RUNS  src/components/Card/Card.spec.tsx
1659
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1660
+ RUNS  src/components/TextField/TextField.spec.tsx
1661
+ RUNS  src/components/Range/Range.spec.tsx
1662
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1663
+ 
1664
+ Test Suites: 5 passed, 5 of 17 total
1665
+ Tests: 45 passed, 45 total
1666
+ Snapshots: 0 total
1667
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (36 ms)
1668
+ 
1669
+ RUNS  src/components/Toast/Toast.spec.tsx
1670
+ RUNS  src/components/Table/Table.spec.tsx
1671
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1672
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1673
+ RUNS  src/components/Button/Button.spec.tsx
1674
+ RUNS  src/components/Typography/Typography.spec.tsx
1675
+ RUNS  src/components/Card/Card.spec.tsx
1676
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1677
+ RUNS  src/components/TextField/TextField.spec.tsx
1678
+ RUNS  src/components/Range/Range.spec.tsx
1679
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1680
+ 
1681
+ Test Suites: 5 passed, 5 of 17 total
1682
+ Tests: 45 passed, 45 total
1683
+ Snapshots: 0 total
1684
+ Time: 10 s โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
1685
+ 
1686
+ RUNS  src/components/Toast/Toast.spec.tsx
1687
+ RUNS  src/components/Table/Table.spec.tsx
1688
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1689
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1690
+ RUNS  src/components/Button/Button.spec.tsx
1691
+ RUNS  src/components/Typography/Typography.spec.tsx
1692
+ RUNS  src/components/Card/Card.spec.tsx
1693
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1694
+ RUNS  src/components/TextField/TextField.spec.tsx
1695
+ RUNS  src/components/Range/Range.spec.tsx
1696
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1697
+ 
1698
+ Test Suites: 5 passed, 5 of 17 total
1699
+ Tests: 45 passed, 45 total
1700
+ Snapshots: 0 total
1701
+  DialogHeader UI
1702
+ 
1703
+ RUNS  src/components/Toast/Toast.spec.tsx
1704
+ RUNS  src/components/Table/Table.spec.tsx
1705
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1706
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1707
+ RUNS  src/components/Button/Button.spec.tsx
1708
+ RUNS  src/components/Typography/Typography.spec.tsx
1709
+ RUNS  src/components/Card/Card.spec.tsx
1710
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1711
+ RUNS  src/components/TextField/TextField.spec.tsx
1712
+ RUNS  src/components/Range/Range.spec.tsx
1713
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1714
+ 
1715
+ Test Suites: 5 passed, 5 of 17 total
1716
+ Tests: 45 passed, 45 total
1717
+ Snapshots: 0 total
1718
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (9 ms)
1719
+ 
1720
+ RUNS  src/components/Toast/Toast.spec.tsx
1721
+ RUNS  src/components/Table/Table.spec.tsx
1722
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1723
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1724
+ RUNS  src/components/Button/Button.spec.tsx
1725
+ RUNS  src/components/Typography/Typography.spec.tsx
1726
+ RUNS  src/components/Card/Card.spec.tsx
1727
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1728
+ RUNS  src/components/TextField/TextField.spec.tsx
1729
+ RUNS  src/components/Range/Range.spec.tsx
1730
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1731
+ 
1732
+ Test Suites: 5 passed, 5 of 17 total
1733
+ Tests: 45 passed, 45 total
1734
+ Snapshots: 0 total
1735
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
1736
+ 
1737
+ RUNS  src/components/Toast/Toast.spec.tsx
1738
+ RUNS  src/components/Table/Table.spec.tsx
1739
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1740
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1741
+ RUNS  src/components/Button/Button.spec.tsx
1742
+ RUNS  src/components/Typography/Typography.spec.tsx
1743
+ RUNS  src/components/Card/Card.spec.tsx
1744
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1745
+ RUNS  src/components/TextField/TextField.spec.tsx
1746
+ RUNS  src/components/Range/Range.spec.tsx
1747
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1748
+ 
1749
+ Test Suites: 5 passed, 5 of 17 total
1750
+ Tests: 45 passed, 45 total
1751
+ Snapshots: 0 total
1752
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
1753
+ 
1754
+ RUNS  src/components/Toast/Toast.spec.tsx
1755
+ RUNS  src/components/Table/Table.spec.tsx
1756
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1757
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1758
+ RUNS  src/components/Button/Button.spec.tsx
1759
+ RUNS  src/components/Typography/Typography.spec.tsx
1760
+ RUNS  src/components/Card/Card.spec.tsx
1761
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1762
+ RUNS  src/components/TextField/TextField.spec.tsx
1763
+ RUNS  src/components/Range/Range.spec.tsx
1764
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1765
+ 
1766
+ Test Suites: 5 passed, 5 of 17 total
1767
+ Tests: 45 passed, 45 total
1768
+ Snapshots: 0 total
1769
+ Time: 10 s โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
1770
+ 
1771
+ RUNS  src/components/Toast/Toast.spec.tsx
1772
+ RUNS  src/components/Table/Table.spec.tsx
1773
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1774
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1775
+ RUNS  src/components/Button/Button.spec.tsx
1776
+ RUNS  src/components/Typography/Typography.spec.tsx
1777
+ RUNS  src/components/Card/Card.spec.tsx
1778
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1779
+ RUNS  src/components/TextField/TextField.spec.tsx
1780
+ RUNS  src/components/Range/Range.spec.tsx
1781
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1782
+ 
1783
+ Test Suites: 5 passed, 5 of 17 total
1784
+ Tests: 45 passed, 45 total
1785
+ Snapshots: 0 total
1786
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (5 ms)
1787
+ 
1788
+ RUNS  src/components/Toast/Toast.spec.tsx
1789
+ RUNS  src/components/Table/Table.spec.tsx
1790
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1791
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1792
+ RUNS  src/components/Button/Button.spec.tsx
1793
+ RUNS  src/components/Typography/Typography.spec.tsx
1794
+ RUNS  src/components/Card/Card.spec.tsx
1795
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1796
+ RUNS  src/components/TextField/TextField.spec.tsx
1797
+ RUNS  src/components/Range/Range.spec.tsx
1798
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1799
+ 
1800
+ Test Suites: 5 passed, 5 of 17 total
1801
+ Tests: 45 passed, 45 total
1802
+ Snapshots: 0 total
1803
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
1804
+ 
1805
+ RUNS  src/components/Toast/Toast.spec.tsx
1806
+ RUNS  src/components/Table/Table.spec.tsx
1807
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1808
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1809
+ RUNS  src/components/Button/Button.spec.tsx
1810
+ RUNS  src/components/Typography/Typography.spec.tsx
1811
+ RUNS  src/components/Card/Card.spec.tsx
1812
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1813
+ RUNS  src/components/TextField/TextField.spec.tsx
1814
+ RUNS  src/components/Range/Range.spec.tsx
1815
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1816
+ 
1817
+ Test Suites: 5 passed, 5 of 17 total
1818
+ Tests: 45 passed, 45 total
1819
+ Snapshots: 0 total
1820
+  DialogContent UI
1821
+ 
1822
+ RUNS  src/components/Toast/Toast.spec.tsx
1823
+ RUNS  src/components/Table/Table.spec.tsx
1824
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1825
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1826
+ RUNS  src/components/Button/Button.spec.tsx
1827
+ RUNS  src/components/Typography/Typography.spec.tsx
1828
+ RUNS  src/components/Card/Card.spec.tsx
1829
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1830
+ RUNS  src/components/TextField/TextField.spec.tsx
1831
+ RUNS  src/components/Range/Range.spec.tsx
1832
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1833
+ 
1834
+ Test Suites: 5 passed, 5 of 17 total
1835
+ Tests: 45 passed, 45 total
1836
+ Snapshots: 0 total
1837
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
1838
+ 
1839
+ RUNS  src/components/Toast/Toast.spec.tsx
1840
+ RUNS  src/components/Table/Table.spec.tsx
1841
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1842
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1843
+ RUNS  src/components/Button/Button.spec.tsx
1844
+ RUNS  src/components/Typography/Typography.spec.tsx
1845
+ RUNS  src/components/Card/Card.spec.tsx
1846
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1847
+ RUNS  src/components/TextField/TextField.spec.tsx
1848
+ RUNS  src/components/Range/Range.spec.tsx
1849
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1850
+ 
1851
+ Test Suites: 5 passed, 5 of 17 total
1852
+ Tests: 45 passed, 45 total
1853
+ Snapshots: 0 total
1854
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
1855
+ 
1856
+ RUNS  src/components/Toast/Toast.spec.tsx
1857
+ RUNS  src/components/Table/Table.spec.tsx
1858
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1859
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1860
+ RUNS  src/components/Button/Button.spec.tsx
1861
+ RUNS  src/components/Typography/Typography.spec.tsx
1862
+ RUNS  src/components/Card/Card.spec.tsx
1863
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1864
+ RUNS  src/components/TextField/TextField.spec.tsx
1865
+ RUNS  src/components/Range/Range.spec.tsx
1866
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1867
+ 
1868
+ Test Suites: 5 passed, 5 of 17 total
1869
+ Tests: 45 passed, 45 total
1870
+ Snapshots: 0 total
1871
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
1872
+ 
1873
+ RUNS  src/components/Toast/Toast.spec.tsx
1874
+ RUNS  src/components/Table/Table.spec.tsx
1875
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1876
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1877
+ RUNS  src/components/Button/Button.spec.tsx
1878
+ RUNS  src/components/Typography/Typography.spec.tsx
1879
+ RUNS  src/components/Card/Card.spec.tsx
1880
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1881
+ RUNS  src/components/TextField/TextField.spec.tsx
1882
+ RUNS  src/components/Range/Range.spec.tsx
1883
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1884
+ 
1885
+ Test Suites: 5 passed, 5 of 17 total
1886
+ Tests: 45 passed, 45 total
1887
+ Snapshots: 0 total
1888
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
1889
+ 
1890
+ 
1891
+ 
1892
+ 
1893
+ 
1894
+ 
1895
+ 
1896
+ 
1897
+ 
1898
+ 
1899
+ 
1900
+ 
1901
+ 
1902
+ 
1903
+ 
1904
+ [?25h
1905
+ RUNS  src/components/Toast/Toast.spec.tsx
1906
+ RUNS  src/components/Table/Table.spec.tsx
1907
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
1908
+ RUNS  src/components/Dialog/Dialog.spec.tsx 
1909
+ RUNS  src/components/Button/Button.spec.tsx 
1910
+ RUNS  src/components/Typography/Typography.spec.tsx
1911
+ RUNS  src/components/Card/Card.spec.tsx
1912
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
1913
+ RUNS  src/components/TextField/TextField.spec.tsx 
1914
+ RUNS  src/components/Range/Range.spec.tsx
1915
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1916
+ 
1917
+ Test Suites: 5 passed, 5 of 17 total
1918
+ Tests: 45 passed, 45 total
1919
+ Snapshots: 0 total
1920
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (6 ms)
1921
+ 
1922
+ RUNS  src/components/Toast/Toast.spec.tsx
1923
+ RUNS  src/components/Table/Table.spec.tsx
1924
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1925
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1926
+ RUNS  src/components/Button/Button.spec.tsx
1927
+ RUNS  src/components/Typography/Typography.spec.tsx
1928
+ RUNS  src/components/Card/Card.spec.tsx
1929
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1930
+ RUNS  src/components/TextField/TextField.spec.tsx
1931
+ RUNS  src/components/Range/Range.spec.tsx
1932
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1933
+ 
1934
+ Test Suites: 5 passed, 5 of 17 total
1935
+ Tests: 45 passed, 45 total
1936
+ Snapshots: 0 total
1937
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
1938
+ 
1939
+ RUNS  src/components/Toast/Toast.spec.tsx
1940
+ RUNS  src/components/Table/Table.spec.tsx
1941
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1942
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1943
+ RUNS  src/components/Button/Button.spec.tsx
1944
+ RUNS  src/components/Typography/Typography.spec.tsx
1945
+ RUNS  src/components/Card/Card.spec.tsx
1946
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1947
+ RUNS  src/components/TextField/TextField.spec.tsx
1948
+ RUNS  src/components/Range/Range.spec.tsx
1949
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1950
+ 
1951
+ Test Suites: 5 passed, 5 of 17 total
1952
+ Tests: 45 passed, 45 total
1953
+ Snapshots: 0 total
1954
+  DialogFooter UI
1955
+ 
1956
+ RUNS  src/components/Toast/Toast.spec.tsx
1957
+ RUNS  src/components/Table/Table.spec.tsx
1958
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1959
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1960
+ RUNS  src/components/Button/Button.spec.tsx
1961
+ RUNS  src/components/Typography/Typography.spec.tsx
1962
+ RUNS  src/components/Card/Card.spec.tsx
1963
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1964
+ RUNS  src/components/TextField/TextField.spec.tsx
1965
+ RUNS  src/components/Range/Range.spec.tsx
1966
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1967
+ 
1968
+ Test Suites: 5 passed, 5 of 17 total
1969
+ Tests: 45 passed, 45 total
1970
+ Snapshots: 0 total
1971
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
1972
+ 
1973
+ RUNS  src/components/Toast/Toast.spec.tsx
1974
+ RUNS  src/components/Table/Table.spec.tsx
1975
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1976
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1977
+ RUNS  src/components/Button/Button.spec.tsx
1978
+ RUNS  src/components/Typography/Typography.spec.tsx
1979
+ RUNS  src/components/Card/Card.spec.tsx
1980
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1981
+ RUNS  src/components/TextField/TextField.spec.tsx
1982
+ RUNS  src/components/Range/Range.spec.tsx
1983
+ RUNS  src/components/Navigation/Navigation.spec.tsx
1984
+ 
1985
+ Test Suites: 5 passed, 5 of 17 total
1986
+ Tests: 45 passed, 45 total
1987
+ Snapshots: 0 total
1988
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
1989
+ 
1990
+ RUNS  src/components/Toast/Toast.spec.tsx
1991
+ RUNS  src/components/Table/Table.spec.tsx
1992
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
1993
+ RUNS  src/components/Dialog/Dialog.spec.tsx
1994
+ RUNS  src/components/Button/Button.spec.tsx
1995
+ RUNS  src/components/Typography/Typography.spec.tsx
1996
+ RUNS  src/components/Card/Card.spec.tsx
1997
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
1998
+ RUNS  src/components/TextField/TextField.spec.tsx
1999
+ RUNS  src/components/Range/Range.spec.tsx
2000
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2001
+ 
2002
+ Test Suites: 5 passed, 5 of 17 total
2003
+ Tests: 45 passed, 45 total
2004
+ Snapshots: 0 total
2005
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2006
+ 
2007
+ RUNS  src/components/Toast/Toast.spec.tsx
2008
+ RUNS  src/components/Table/Table.spec.tsx
2009
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2010
+ RUNS  src/components/Dialog/Dialog.spec.tsx
2011
+ RUNS  src/components/Button/Button.spec.tsx
2012
+ RUNS  src/components/Typography/Typography.spec.tsx
2013
+ RUNS  src/components/Card/Card.spec.tsx
2014
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2015
+ RUNS  src/components/TextField/TextField.spec.tsx
2016
+ RUNS  src/components/Range/Range.spec.tsx
2017
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2018
+ 
2019
+ Test Suites: 5 passed, 5 of 17 total
2020
+ Tests: 45 passed, 45 total
2021
+ Snapshots: 0 total
2022
+ Time: 10 s โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
2023
+ 
2024
+ RUNS  src/components/Toast/Toast.spec.tsx
2025
+ RUNS  src/components/Table/Table.spec.tsx
2026
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2027
+ RUNS  src/components/Dialog/Dialog.spec.tsx
2028
+ RUNS  src/components/Button/Button.spec.tsx
2029
+ RUNS  src/components/Typography/Typography.spec.tsx
2030
+ RUNS  src/components/Card/Card.spec.tsx
2031
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2032
+ RUNS  src/components/TextField/TextField.spec.tsx
2033
+ RUNS  src/components/Range/Range.spec.tsx
2034
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2035
+ 
2036
+ Test Suites: 5 passed, 5 of 17 total
2037
+ Tests: 45 passed, 45 total
2038
+ Snapshots: 0 total
2039
+ Time: 10 s โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2040
+ 
2041
+ RUNS  src/components/Toast/Toast.spec.tsx
2042
+ RUNS  src/components/Table/Table.spec.tsx
2043
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2044
+ RUNS  src/components/Dialog/Dialog.spec.tsx
2045
+ RUNS  src/components/Button/Button.spec.tsx
2046
+ RUNS  src/components/Typography/Typography.spec.tsx
2047
+ RUNS  src/components/Card/Card.spec.tsx
2048
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2049
+ RUNS  src/components/TextField/TextField.spec.tsx
2050
+ RUNS  src/components/Range/Range.spec.tsx
2051
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2052
+ 
2053
+ Test Suites: 5 passed, 5 of 17 total
2054
+ Tests: 45 passed, 45 total
2055
+ Snapshots: 0 total
2056
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2057
+ 
2058
+ RUNS  src/components/Toast/Toast.spec.tsx
2059
+ RUNS  src/components/Table/Table.spec.tsx
2060
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2061
+ RUNS  src/components/Dialog/Dialog.spec.tsx
2062
+ RUNS  src/components/Button/Button.spec.tsx
2063
+ RUNS  src/components/Typography/Typography.spec.tsx
2064
+ RUNS  src/components/Card/Card.spec.tsx
2065
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2066
+ RUNS  src/components/TextField/TextField.spec.tsx
2067
+ RUNS  src/components/Range/Range.spec.tsx
2068
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2069
+ 
2070
+ Test Suites: 5 passed, 5 of 17 total
2071
+ Tests: 45 passed, 45 total
2072
+ Snapshots: 0 total
2073
+ 
2074
+ RUNS  src/components/Toast/Toast.spec.tsx
2075
+ RUNS  src/components/Table/Table.spec.tsx
2076
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2077
+ RUNS  src/components/Dialog/Dialog.spec.tsx
2078
+ RUNS  src/components/Button/Button.spec.tsx
2079
+ RUNS  src/components/Typography/Typography.spec.tsx
2080
+ RUNS  src/components/Card/Card.spec.tsx
2081
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2082
+ RUNS  src/components/TextField/TextField.spec.tsx
2083
+ RUNS  src/components/Range/Range.spec.tsx
2084
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2085
+ 
2086
+ Test Suites: 5 passed, 5 of 17 total
2087
+ Tests: 45 passed, 45 total
2088
+ Snapshots: 0 total
2089
+  PASS  src/hooks/useDialog/useDialog.spec.tsx
2090
+ 
2091
+ RUNS  src/components/Toast/Toast.spec.tsx
2092
+ RUNS  src/components/Table/Table.spec.tsx
2093
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2094
+ RUNS  src/components/Button/Button.spec.tsx
2095
+ RUNS  src/components/Typography/Typography.spec.tsx
2096
+ RUNS  src/components/Chip/Chip.spec.tsx
2097
+ RUNS  src/components/Card/Card.spec.tsx
2098
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2099
+ RUNS  src/components/TextField/TextField.spec.tsx
2100
+ RUNS  src/components/Range/Range.spec.tsx
2101
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2102
+ 
2103
+ Test Suites: 6 passed, 6 of 17 total
2104
+ Tests: 76 passed, 76 total
2105
+ Snapshots: 0 total
2106
+  useDialog ํ…Œ์ŠคํŠธ
2107
+ 
2108
+ RUNS  src/components/Toast/Toast.spec.tsx
2109
+ RUNS  src/components/Table/Table.spec.tsx
2110
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2111
+ RUNS  src/components/Button/Button.spec.tsx
2112
+ RUNS  src/components/Typography/Typography.spec.tsx
2113
+ RUNS  src/components/Chip/Chip.spec.tsx
2114
+ RUNS  src/components/Card/Card.spec.tsx
2115
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2116
+ RUNS  src/components/TextField/TextField.spec.tsx
2117
+ RUNS  src/components/Range/Range.spec.tsx
2118
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2119
+ 
2120
+ Test Suites: 6 passed, 6 of 17 total
2121
+ Tests: 76 passed, 76 total
2122
+ Snapshots: 0 total
2123
+ 
2124
+ 
2125
+ 
2126
+ 
2127
+ 
2128
+ 
2129
+ 
2130
+ 
2131
+ 
2132
+ 
2133
+ 
2134
+ 
2135
+ 
2136
+ 
2137
+ 
2138
+ [?25h โˆš ํ™•์ธ ๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด๋ฉด alert์„ ๋‹ซ์„ ์ˆ˜ ์žˆ๋‹ค. (150 ms)
2139
+ 
2140
+ RUNS  src/components/Toast/Toast.spec.tsx
2141
+ RUNS  src/components/Table/Table.spec.tsx
2142
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2143
+ RUNS  src/components/Button/Button.spec.tsx
2144
+ RUNS  src/components/Typography/Typography.spec.tsx 
2145
+ RUNS  src/components/Chip/Chip.spec.tsx
2146
+ RUNS  src/components/Card/Card.spec.tsx
2147
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
2148
+ RUNS  src/components/TextField/TextField.spec.tsx 
2149
+ RUNS  src/components/Range/Range.spec.tsx
2150
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2151
+ 
2152
+ Test Suites: 6 passed, 6 of 17 total
2153
+ Tests: 76 passed, 76 total
2154
+ Snapshots: 0 total
2155
+  โ—‹ skipped confirm์˜ ํ™•์ธ ๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด๋ฉด true, ์ทจ์†Œ ๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด๋ฉด false๋ฅผ ๋ฐ˜ํ™˜ํ•œ๋‹ค.
2156
+ 
2157
+ RUNS  src/components/Toast/Toast.spec.tsx
2158
+ RUNS  src/components/Table/Table.spec.tsx
2159
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2160
+ RUNS  src/components/Button/Button.spec.tsx
2161
+ RUNS  src/components/Typography/Typography.spec.tsx
2162
+ RUNS  src/components/Chip/Chip.spec.tsx
2163
+ RUNS  src/components/Card/Card.spec.tsx
2164
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2165
+ RUNS  src/components/TextField/TextField.spec.tsx
2166
+ RUNS  src/components/Range/Range.spec.tsx
2167
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2168
+ 
2169
+ Test Suites: 6 passed, 6 of 17 total
2170
+ Tests: 76 passed, 76 total
2171
+ Snapshots: 0 total
2172
+ 
2173
+ RUNS  src/components/Toast/Toast.spec.tsx
2174
+ RUNS  src/components/Table/Table.spec.tsx
2175
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2176
+ RUNS  src/components/Button/Button.spec.tsx
2177
+ RUNS  src/components/Typography/Typography.spec.tsx
2178
+ RUNS  src/components/Chip/Chip.spec.tsx
2179
+ RUNS  src/components/Card/Card.spec.tsx
2180
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2181
+ RUNS  src/components/TextField/TextField.spec.tsx
2182
+ RUNS  src/components/Range/Range.spec.tsx
2183
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2184
+ 
2185
+ Test Suites: 6 passed, 6 of 17 total
2186
+ Tests: 76 passed, 76 total
2187
+ Snapshots: 0 total
2188
+  PASS  src/components/Button/Button.spec.tsx
2189
+ 
2190
+ RUNS  src/components/Toast/Toast.spec.tsx
2191
+ RUNS  src/components/Table/Table.spec.tsx
2192
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2193
+ RUNS  src/components/Button/Button.spec.tsx
2194
+ RUNS  src/components/Typography/Typography.spec.tsx
2195
+ RUNS  src/components/Chip/Chip.spec.tsx
2196
+ RUNS  src/components/Card/Card.spec.tsx
2197
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2198
+ RUNS  src/components/TextField/TextField.spec.tsx
2199
+ RUNS  src/components/Range/Range.spec.tsx
2200
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2201
+ 
2202
+ Test Suites: 6 passed, 6 of 17 total
2203
+ Tests: 76 passed, 76 total
2204
+ Snapshots: 0 total
2205
+  Button ์ปดํฌ๋„ŒํŠธ
2206
+ 
2207
+ RUNS  src/components/Toast/Toast.spec.tsx
2208
+ RUNS  src/components/Table/Table.spec.tsx
2209
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2210
+ RUNS  src/components/Button/Button.spec.tsx
2211
+ RUNS  src/components/Typography/Typography.spec.tsx
2212
+ RUNS  src/components/Chip/Chip.spec.tsx
2213
+ RUNS  src/components/Card/Card.spec.tsx
2214
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2215
+ RUNS  src/components/TextField/TextField.spec.tsx
2216
+ RUNS  src/components/Range/Range.spec.tsx
2217
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2218
+ 
2219
+ Test Suites: 6 passed, 6 of 17 total
2220
+ Tests: 76 passed, 76 total
2221
+ Snapshots: 0 total
2222
+  โˆš Button์„ ํด๋ฆญํ•˜๋ฉด onClick์ด ํ˜ธ์ถœ๋˜์–ด์•ผ ํ•œ๋‹ค (30 ms)
2223
+ 
2224
+ RUNS  src/components/Toast/Toast.spec.tsx
2225
+ RUNS  src/components/Table/Table.spec.tsx
2226
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2227
+ RUNS  src/components/Button/Button.spec.tsx
2228
+ RUNS  src/components/Typography/Typography.spec.tsx
2229
+ RUNS  src/components/Chip/Chip.spec.tsx
2230
+ RUNS  src/components/Card/Card.spec.tsx
2231
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2232
+ RUNS  src/components/TextField/TextField.spec.tsx
2233
+ RUNS  src/components/Range/Range.spec.tsx
2234
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2235
+ 
2236
+ Test Suites: 6 passed, 6 of 17 total
2237
+ Tests: 76 passed, 76 total
2238
+ Snapshots: 0 total
2239
+  โˆš disabled Button์„ ํด๋ฆญํ•˜๋ฉด onClick์ด ํ˜ธ์ถœ๋˜์ง€ ์•Š์•„์•ผ ํ•œ๋‹ค (15 ms)
2240
+ 
2241
+ RUNS  src/components/Toast/Toast.spec.tsx
2242
+ RUNS  src/components/Table/Table.spec.tsx
2243
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2244
+ RUNS  src/components/Button/Button.spec.tsx
2245
+ RUNS  src/components/Typography/Typography.spec.tsx
2246
+ RUNS  src/components/Chip/Chip.spec.tsx
2247
+ RUNS  src/components/Card/Card.spec.tsx
2248
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2249
+ RUNS  src/components/TextField/TextField.spec.tsx
2250
+ RUNS  src/components/Range/Range.spec.tsx
2251
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2252
+ 
2253
+ Test Suites: 6 passed, 6 of 17 total
2254
+ Tests: 76 passed, 76 total
2255
+ Snapshots: 0 total
2256
+  Button UI
2257
+ 
2258
+ RUNS  src/components/Toast/Toast.spec.tsx
2259
+ RUNS  src/components/Table/Table.spec.tsx
2260
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2261
+ RUNS  src/components/Button/Button.spec.tsx
2262
+ RUNS  src/components/Typography/Typography.spec.tsx
2263
+ RUNS  src/components/Chip/Chip.spec.tsx
2264
+ RUNS  src/components/Card/Card.spec.tsx
2265
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2266
+ RUNS  src/components/TextField/TextField.spec.tsx
2267
+ RUNS  src/components/Range/Range.spec.tsx
2268
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2269
+ 
2270
+ Test Suites: 6 passed, 6 of 17 total
2271
+ Tests: 76 passed, 76 total
2272
+ Snapshots: 0 total
2273
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (48 ms)
2274
+ 
2275
+ RUNS  src/components/Toast/Toast.spec.tsx
2276
+ RUNS  src/components/Table/Table.spec.tsx
2277
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2278
+ RUNS  src/components/Button/Button.spec.tsx
2279
+ RUNS  src/components/Typography/Typography.spec.tsx
2280
+ RUNS  src/components/Chip/Chip.spec.tsx
2281
+ RUNS  src/components/Card/Card.spec.tsx
2282
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2283
+ RUNS  src/components/TextField/TextField.spec.tsx
2284
+ RUNS  src/components/Range/Range.spec.tsx
2285
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2286
+ 
2287
+ Test Suites: 6 passed, 6 of 17 total
2288
+ Tests: 76 passed, 76 total
2289
+ Snapshots: 0 total
2290
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (7 ms)
2291
+ 
2292
+ RUNS  src/components/Toast/Toast.spec.tsx
2293
+ RUNS  src/components/Table/Table.spec.tsx
2294
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2295
+ RUNS  src/components/Button/Button.spec.tsx
2296
+ RUNS  src/components/Typography/Typography.spec.tsx
2297
+ RUNS  src/components/Chip/Chip.spec.tsx
2298
+ RUNS  src/components/Card/Card.spec.tsx
2299
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2300
+ RUNS  src/components/TextField/TextField.spec.tsx
2301
+ RUNS  src/components/Range/Range.spec.tsx
2302
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2303
+ 
2304
+ Test Suites: 6 passed, 6 of 17 total
2305
+ Tests: 76 passed, 76 total
2306
+ Snapshots: 0 total
2307
+ Time: 10 s โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (5 ms)
2308
+ 
2309
+ RUNS  src/components/Toast/Toast.spec.tsx
2310
+ RUNS  src/components/Table/Table.spec.tsx
2311
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2312
+ RUNS  src/components/Button/Button.spec.tsx
2313
+ RUNS  src/components/Typography/Typography.spec.tsx
2314
+ RUNS  src/components/Chip/Chip.spec.tsx
2315
+ RUNS  src/components/Card/Card.spec.tsx
2316
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2317
+ RUNS  src/components/TextField/TextField.spec.tsx
2318
+ RUNS  src/components/Range/Range.spec.tsx
2319
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2320
+ 
2321
+ Test Suites: 6 passed, 6 of 17 total
2322
+ Tests: 76 passed, 76 total
2323
+ Snapshots: 0 total
2324
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2325
+ 
2326
+ RUNS  src/components/Toast/Toast.spec.tsx
2327
+ RUNS  src/components/Table/Table.spec.tsx
2328
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2329
+ RUNS  src/components/Button/Button.spec.tsx
2330
+ RUNS  src/components/Typography/Typography.spec.tsx
2331
+ RUNS  src/components/Chip/Chip.spec.tsx
2332
+ RUNS  src/components/Card/Card.spec.tsx
2333
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2334
+ RUNS  src/components/TextField/TextField.spec.tsx
2335
+ RUNS  src/components/Range/Range.spec.tsx
2336
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2337
+ 
2338
+ Test Suites: 6 passed, 6 of 17 total
2339
+ Tests: 76 passed, 76 total
2340
+ Snapshots: 0 total
2341
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (36 ms)
2342
+ 
2343
+ RUNS  src/components/Toast/Toast.spec.tsx
2344
+ RUNS  src/components/Table/Table.spec.tsx
2345
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2346
+ RUNS  src/components/Button/Button.spec.tsx
2347
+ RUNS  src/components/Typography/Typography.spec.tsx
2348
+ RUNS  src/components/Chip/Chip.spec.tsx
2349
+ RUNS  src/components/Card/Card.spec.tsx
2350
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2351
+ RUNS  src/components/TextField/TextField.spec.tsx
2352
+ RUNS  src/components/Range/Range.spec.tsx
2353
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2354
+ 
2355
+ Test Suites: 6 passed, 6 of 17 total
2356
+ Tests: 76 passed, 76 total
2357
+ Snapshots: 0 total
2358
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
2359
+ 
2360
+ RUNS  src/components/Toast/Toast.spec.tsx
2361
+ RUNS  src/components/Table/Table.spec.tsx
2362
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2363
+ RUNS  src/components/Button/Button.spec.tsx
2364
+ RUNS  src/components/Typography/Typography.spec.tsx
2365
+ RUNS  src/components/Chip/Chip.spec.tsx
2366
+ RUNS  src/components/Card/Card.spec.tsx
2367
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2368
+ RUNS  src/components/TextField/TextField.spec.tsx
2369
+ RUNS  src/components/Range/Range.spec.tsx
2370
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2371
+ 
2372
+ Test Suites: 6 passed, 6 of 17 total
2373
+ Tests: 76 passed, 76 total
2374
+ Snapshots: 0 total
2375
+ 
2376
+ RUNS  src/components/Toast/Toast.spec.tsx
2377
+ RUNS  src/components/Table/Table.spec.tsx
2378
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2379
+ RUNS  src/components/Button/Button.spec.tsx
2380
+ RUNS  src/components/Typography/Typography.spec.tsx
2381
+ RUNS  src/components/Chip/Chip.spec.tsx
2382
+ RUNS  src/components/Card/Card.spec.tsx
2383
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2384
+ RUNS  src/components/TextField/TextField.spec.tsx
2385
+ RUNS  src/components/Range/Range.spec.tsx
2386
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2387
+ 
2388
+ Test Suites: 6 passed, 6 of 17 total
2389
+ Tests: 76 passed, 76 total
2390
+ Snapshots: 0 total
2391
+  PASS  src/components/Typography/Typography.spec.tsx
2392
+ 
2393
+ RUNS  src/components/Toast/Toast.spec.tsx
2394
+ RUNS  src/components/Table/Table.spec.tsx
2395
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2396
+ RUNS  src/components/Button/Button.spec.tsx
2397
+ RUNS  src/components/Typography/Typography.spec.tsx
2398
+ RUNS  src/components/Chip/Chip.spec.tsx
2399
+ RUNS  src/components/Card/Card.spec.tsx
2400
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2401
+ RUNS  src/components/TextField/TextField.spec.tsx
2402
+ RUNS  src/components/Range/Range.spec.tsx
2403
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2404
+ 
2405
+ Test Suites: 6 passed, 6 of 17 total
2406
+ Tests: 76 passed, 76 total
2407
+ Snapshots: 0 total
2408
+  Typogrphy ์ปดํฌ๋„ŒํŠธ
2409
+ 
2410
+ RUNS  src/components/Toast/Toast.spec.tsx
2411
+ RUNS  src/components/Table/Table.spec.tsx
2412
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2413
+ RUNS  src/components/Button/Button.spec.tsx
2414
+ RUNS  src/components/Typography/Typography.spec.tsx
2415
+ RUNS  src/components/Chip/Chip.spec.tsx
2416
+ RUNS  src/components/Card/Card.spec.tsx
2417
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2418
+ RUNS  src/components/TextField/TextField.spec.tsx
2419
+ RUNS  src/components/Range/Range.spec.tsx
2420
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2421
+ 
2422
+ Test Suites: 6 passed, 6 of 17 total
2423
+ Tests: 76 passed, 76 total
2424
+ Snapshots: 0 total
2425
+  โˆš ๊ธฐ๋ณธ์ ์œผ๋กœ pํƒœ๊ทธ๋กœ ์ถœ๋ ฅํ•œ๋‹ค. (4 ms)
2426
+ 
2427
+ RUNS  src/components/Toast/Toast.spec.tsx
2428
+ RUNS  src/components/Table/Table.spec.tsx
2429
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2430
+ RUNS  src/components/Button/Button.spec.tsx
2431
+ RUNS  src/components/Typography/Typography.spec.tsx
2432
+ RUNS  src/components/Chip/Chip.spec.tsx
2433
+ RUNS  src/components/Card/Card.spec.tsx
2434
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2435
+ RUNS  src/components/TextField/TextField.spec.tsx
2436
+ RUNS  src/components/Range/Range.spec.tsx
2437
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2438
+ 
2439
+ Test Suites: 6 passed, 6 of 17 total
2440
+ Tests: 76 passed, 76 total
2441
+ Snapshots: 0 total
2442
+  โˆš as์— ์ „๋‹ฌ๋œ ์•Œ๋งž์€ ํƒœ๊ทธ๋กœ ์ถœ๋ ฅํ•œ๋‹ค. (18 ms)
2443
+ 
2444
+ RUNS  src/components/Toast/Toast.spec.tsx
2445
+ RUNS  src/components/Table/Table.spec.tsx
2446
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2447
+ RUNS  src/components/Button/Button.spec.tsx
2448
+ RUNS  src/components/Typography/Typography.spec.tsx
2449
+ RUNS  src/components/Chip/Chip.spec.tsx
2450
+ RUNS  src/components/Card/Card.spec.tsx
2451
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2452
+ RUNS  src/components/TextField/TextField.spec.tsx
2453
+ RUNS  src/components/Range/Range.spec.tsx
2454
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2455
+ 
2456
+ Test Suites: 6 passed, 6 of 17 total
2457
+ Tests: 76 passed, 76 total
2458
+ Snapshots: 0 total
2459
+  Typography UI
2460
+ 
2461
+ RUNS  src/components/Toast/Toast.spec.tsx
2462
+ RUNS  src/components/Table/Table.spec.tsx
2463
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2464
+ RUNS  src/components/Button/Button.spec.tsx
2465
+ RUNS  src/components/Typography/Typography.spec.tsx
2466
+ RUNS  src/components/Chip/Chip.spec.tsx
2467
+ RUNS  src/components/Card/Card.spec.tsx
2468
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2469
+ RUNS  src/components/TextField/TextField.spec.tsx
2470
+ RUNS  src/components/Range/Range.spec.tsx
2471
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2472
+ 
2473
+ Test Suites: 6 passed, 6 of 17 total
2474
+ Tests: 76 passed, 76 total
2475
+ Snapshots: 0 total
2476
+ 
2477
+ 
2478
+ 
2479
+ 
2480
+ 
2481
+ 
2482
+ 
2483
+ 
2484
+ 
2485
+ 
2486
+ 
2487
+ 
2488
+ 
2489
+ 
2490
+ 
2491
+ [?25h โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (44 ms)
2492
+ 
2493
+ RUNS  src/components/Toast/Toast.spec.tsx
2494
+ RUNS  src/components/Table/Table.spec.tsx
2495
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
2496
+ RUNS  src/components/Button/Button.spec.tsx 
2497
+ RUNS  src/components/Typography/Typography.spec.tsx
2498
+ RUNS  src/components/Chip/Chip.spec.tsx
2499
+ RUNS  src/components/Card/Card.spec.tsx
2500
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
2501
+ RUNS  src/components/TextField/TextField.spec.tsx 
2502
+ RUNS  src/components/Range/Range.spec.tsx
2503
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2504
+ 
2505
+ Test Suites: 6 passed, 6 of 17 total
2506
+ Tests: 76 passed, 76 total
2507
+ Snapshots: 0 total
2508
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (8 ms)
2509
+ 
2510
+ RUNS  src/components/Toast/Toast.spec.tsx
2511
+ RUNS  src/components/Table/Table.spec.tsx
2512
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2513
+ RUNS  src/components/Button/Button.spec.tsx
2514
+ RUNS  src/components/Typography/Typography.spec.tsx
2515
+ RUNS  src/components/Chip/Chip.spec.tsx
2516
+ RUNS  src/components/Card/Card.spec.tsx
2517
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2518
+ RUNS  src/components/TextField/TextField.spec.tsx
2519
+ RUNS  src/components/Range/Range.spec.tsx
2520
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2521
+ 
2522
+ Test Suites: 6 passed, 6 of 17 total
2523
+ Tests: 76 passed, 76 total
2524
+ Snapshots: 0 total
2525
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
2526
+ 
2527
+ RUNS  src/components/Toast/Toast.spec.tsx
2528
+ RUNS  src/components/Table/Table.spec.tsx
2529
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2530
+ RUNS  src/components/Button/Button.spec.tsx
2531
+ RUNS  src/components/Typography/Typography.spec.tsx
2532
+ RUNS  src/components/Chip/Chip.spec.tsx
2533
+ RUNS  src/components/Card/Card.spec.tsx
2534
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2535
+ RUNS  src/components/TextField/TextField.spec.tsx
2536
+ RUNS  src/components/Range/Range.spec.tsx
2537
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2538
+ 
2539
+ Test Suites: 6 passed, 6 of 17 total
2540
+ Tests: 76 passed, 76 total
2541
+ Snapshots: 0 total
2542
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2543
+ 
2544
+ RUNS  src/components/Toast/Toast.spec.tsx
2545
+ RUNS  src/components/Table/Table.spec.tsx
2546
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2547
+ RUNS  src/components/Button/Button.spec.tsx
2548
+ RUNS  src/components/Typography/Typography.spec.tsx
2549
+ RUNS  src/components/Chip/Chip.spec.tsx
2550
+ RUNS  src/components/Card/Card.spec.tsx
2551
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2552
+ RUNS  src/components/TextField/TextField.spec.tsx
2553
+ RUNS  src/components/Range/Range.spec.tsx
2554
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2555
+ 
2556
+ Test Suites: 6 passed, 6 of 17 total
2557
+ Tests: 76 passed, 76 total
2558
+ Snapshots: 0 total
2559
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (35 ms)
2560
+ 
2561
+ RUNS  src/components/Toast/Toast.spec.tsx
2562
+ RUNS  src/components/Table/Table.spec.tsx
2563
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2564
+ RUNS  src/components/Button/Button.spec.tsx
2565
+ RUNS  src/components/Typography/Typography.spec.tsx
2566
+ RUNS  src/components/Chip/Chip.spec.tsx
2567
+ RUNS  src/components/Card/Card.spec.tsx
2568
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2569
+ RUNS  src/components/TextField/TextField.spec.tsx
2570
+ RUNS  src/components/Range/Range.spec.tsx
2571
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2572
+ 
2573
+ Test Suites: 6 passed, 6 of 17 total
2574
+ Tests: 76 passed, 76 total
2575
+ Snapshots: 0 total
2576
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
2577
+ 
2578
+ RUNS  src/components/Toast/Toast.spec.tsx
2579
+ RUNS  src/components/Table/Table.spec.tsx
2580
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2581
+ RUNS  src/components/Button/Button.spec.tsx
2582
+ RUNS  src/components/Typography/Typography.spec.tsx
2583
+ RUNS  src/components/Chip/Chip.spec.tsx
2584
+ RUNS  src/components/Card/Card.spec.tsx
2585
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2586
+ RUNS  src/components/TextField/TextField.spec.tsx
2587
+ RUNS  src/components/Range/Range.spec.tsx
2588
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2589
+ 
2590
+ Test Suites: 6 passed, 6 of 17 total
2591
+ Tests: 76 passed, 76 total
2592
+ Snapshots: 0 total
2593
+ 
2594
+ RUNS  src/components/Toast/Toast.spec.tsx
2595
+ RUNS  src/components/Table/Table.spec.tsx
2596
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2597
+ RUNS  src/components/Button/Button.spec.tsx
2598
+ RUNS  src/components/Typography/Typography.spec.tsx
2599
+ RUNS  src/components/Chip/Chip.spec.tsx
2600
+ RUNS  src/components/Card/Card.spec.tsx
2601
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2602
+ RUNS  src/components/TextField/TextField.spec.tsx
2603
+ RUNS  src/components/Range/Range.spec.tsx
2604
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2605
+ 
2606
+ Test Suites: 6 passed, 6 of 17 total
2607
+ Tests: 76 passed, 76 total
2608
+ Snapshots: 0 total
2609
+  PASS  src/components/Toast/Toast.spec.tsx
2610
+ 
2611
+ RUNS  src/components/Toast/Toast.spec.tsx
2612
+ RUNS  src/components/Table/Table.spec.tsx
2613
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2614
+ RUNS  src/components/Button/Button.spec.tsx
2615
+ RUNS  src/components/Typography/Typography.spec.tsx
2616
+ RUNS  src/components/Chip/Chip.spec.tsx
2617
+ RUNS  src/components/Card/Card.spec.tsx
2618
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2619
+ RUNS  src/components/TextField/TextField.spec.tsx
2620
+ RUNS  src/components/Range/Range.spec.tsx
2621
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2622
+ 
2623
+ Test Suites: 6 passed, 6 of 17 total
2624
+ Tests: 76 passed, 76 total
2625
+ Snapshots: 0 total
2626
+ Time: 10 s Toast ์ปดํฌ๋„ŒํŠธ
2627
+ 
2628
+ RUNS  src/components/Toast/Toast.spec.tsx
2629
+ RUNS  src/components/Table/Table.spec.tsx
2630
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2631
+ RUNS  src/components/Button/Button.spec.tsx
2632
+ RUNS  src/components/Typography/Typography.spec.tsx
2633
+ RUNS  src/components/Chip/Chip.spec.tsx
2634
+ RUNS  src/components/Card/Card.spec.tsx
2635
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2636
+ RUNS  src/components/TextField/TextField.spec.tsx
2637
+ RUNS  src/components/Range/Range.spec.tsx
2638
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2639
+ 
2640
+ Test Suites: 6 passed, 6 of 17 total
2641
+ Tests: 76 passed, 76 total
2642
+ Snapshots: 0 total
2643
+  Toast UI
2644
+ 
2645
+ RUNS  src/components/Toast/Toast.spec.tsx
2646
+ RUNS  src/components/Table/Table.spec.tsx
2647
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2648
+ RUNS  src/components/Button/Button.spec.tsx
2649
+ RUNS  src/components/Typography/Typography.spec.tsx
2650
+ RUNS  src/components/Chip/Chip.spec.tsx
2651
+ RUNS  src/components/Card/Card.spec.tsx
2652
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2653
+ RUNS  src/components/TextField/TextField.spec.tsx
2654
+ RUNS  src/components/Range/Range.spec.tsx
2655
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2656
+ 
2657
+ Test Suites: 6 passed, 6 of 17 total
2658
+ Tests: 76 passed, 76 total
2659
+ Snapshots: 0 total
2660
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (63 ms)
2661
+ 
2662
+ RUNS  src/components/Toast/Toast.spec.tsx
2663
+ RUNS  src/components/Table/Table.spec.tsx
2664
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2665
+ RUNS  src/components/Button/Button.spec.tsx
2666
+ RUNS  src/components/Typography/Typography.spec.tsx
2667
+ RUNS  src/components/Chip/Chip.spec.tsx
2668
+ RUNS  src/components/Card/Card.spec.tsx
2669
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2670
+ RUNS  src/components/TextField/TextField.spec.tsx
2671
+ RUNS  src/components/Range/Range.spec.tsx
2672
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2673
+ 
2674
+ Test Suites: 6 passed, 6 of 17 total
2675
+ Tests: 76 passed, 76 total
2676
+ Snapshots: 0 total
2677
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (10 ms)
2678
+ 
2679
+ RUNS  src/components/Toast/Toast.spec.tsx
2680
+ RUNS  src/components/Table/Table.spec.tsx
2681
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2682
+ RUNS  src/components/Button/Button.spec.tsx
2683
+ RUNS  src/components/Typography/Typography.spec.tsx
2684
+ RUNS  src/components/Chip/Chip.spec.tsx
2685
+ RUNS  src/components/Card/Card.spec.tsx
2686
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2687
+ RUNS  src/components/TextField/TextField.spec.tsx
2688
+ RUNS  src/components/Range/Range.spec.tsx
2689
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2690
+ 
2691
+ Test Suites: 6 passed, 6 of 17 total
2692
+ Tests: 76 passed, 76 total
2693
+ Snapshots: 0 total
2694
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (5 ms)
2695
+ 
2696
+ RUNS  src/components/Toast/Toast.spec.tsx
2697
+ RUNS  src/components/Table/Table.spec.tsx
2698
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2699
+ RUNS  src/components/Button/Button.spec.tsx
2700
+ RUNS  src/components/Typography/Typography.spec.tsx
2701
+ RUNS  src/components/Chip/Chip.spec.tsx
2702
+ RUNS  src/components/Card/Card.spec.tsx
2703
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2704
+ RUNS  src/components/TextField/TextField.spec.tsx
2705
+ RUNS  src/components/Range/Range.spec.tsx
2706
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2707
+ 
2708
+ Test Suites: 6 passed, 6 of 17 total
2709
+ Tests: 76 passed, 76 total
2710
+ Snapshots: 0 total
2711
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2712
+ 
2713
+ RUNS  src/components/Toast/Toast.spec.tsx
2714
+ RUNS  src/components/Table/Table.spec.tsx
2715
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2716
+ RUNS  src/components/Button/Button.spec.tsx
2717
+ RUNS  src/components/Typography/Typography.spec.tsx
2718
+ RUNS  src/components/Chip/Chip.spec.tsx
2719
+ RUNS  src/components/Card/Card.spec.tsx
2720
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2721
+ RUNS  src/components/TextField/TextField.spec.tsx
2722
+ RUNS  src/components/Range/Range.spec.tsx
2723
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2724
+ 
2725
+ Test Suites: 6 passed, 6 of 17 total
2726
+ Tests: 76 passed, 76 total
2727
+ Snapshots: 0 total
2728
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (29 ms)
2729
+ 
2730
+ RUNS  src/components/Toast/Toast.spec.tsx
2731
+ RUNS  src/components/Table/Table.spec.tsx
2732
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2733
+ RUNS  src/components/Button/Button.spec.tsx
2734
+ RUNS  src/components/Typography/Typography.spec.tsx
2735
+ RUNS  src/components/Chip/Chip.spec.tsx
2736
+ RUNS  src/components/Card/Card.spec.tsx
2737
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2738
+ RUNS  src/components/TextField/TextField.spec.tsx
2739
+ RUNS  src/components/Range/Range.spec.tsx
2740
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2741
+ 
2742
+ Test Suites: 6 passed, 6 of 17 total
2743
+ Tests: 76 passed, 76 total
2744
+ Snapshots: 0 total
2745
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2746
+ 
2747
+ RUNS  src/components/Toast/Toast.spec.tsx
2748
+ RUNS  src/components/Table/Table.spec.tsx
2749
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2750
+ RUNS  src/components/Button/Button.spec.tsx
2751
+ RUNS  src/components/Typography/Typography.spec.tsx
2752
+ RUNS  src/components/Chip/Chip.spec.tsx
2753
+ RUNS  src/components/Card/Card.spec.tsx
2754
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2755
+ RUNS  src/components/TextField/TextField.spec.tsx
2756
+ RUNS  src/components/Range/Range.spec.tsx
2757
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2758
+ 
2759
+ Test Suites: 6 passed, 6 of 17 total
2760
+ Tests: 76 passed, 76 total
2761
+ Snapshots: 0 total
2762
+ Time: 10 s
2763
+ RUNS  src/components/Toast/Toast.spec.tsx
2764
+ RUNS  src/components/Table/Table.spec.tsx
2765
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2766
+ RUNS  src/components/Button/Button.spec.tsx
2767
+ RUNS  src/components/Typography/Typography.spec.tsx
2768
+ RUNS  src/components/Chip/Chip.spec.tsx
2769
+ RUNS  src/components/Card/Card.spec.tsx
2770
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2771
+ RUNS  src/components/TextField/TextField.spec.tsx
2772
+ RUNS  src/components/Range/Range.spec.tsx
2773
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2774
+ 
2775
+ Test Suites: 6 passed, 6 of 17 total
2776
+ Tests: 76 passed, 76 total
2777
+ Snapshots: 0 total
2778
+  PASS  src/components/Table/Table.spec.tsx
2779
+ 
2780
+ RUNS  src/components/Toast/Toast.spec.tsx
2781
+ RUNS  src/components/Table/Table.spec.tsx
2782
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2783
+ RUNS  src/components/Button/Button.spec.tsx
2784
+ RUNS  src/components/Typography/Typography.spec.tsx
2785
+ RUNS  src/components/Chip/Chip.spec.tsx
2786
+ RUNS  src/components/Card/Card.spec.tsx
2787
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2788
+ RUNS  src/components/TextField/TextField.spec.tsx
2789
+ RUNS  src/components/Range/Range.spec.tsx
2790
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2791
+ 
2792
+ Test Suites: 6 passed, 6 of 17 total
2793
+ Tests: 76 passed, 76 total
2794
+ Snapshots: 0 total
2795
+  Table ์ปดํฌ๋„ŒํŠธ
2796
+ 
2797
+ RUNS  src/components/Toast/Toast.spec.tsx
2798
+ RUNS  src/components/Table/Table.spec.tsx
2799
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2800
+ RUNS  src/components/Button/Button.spec.tsx
2801
+ RUNS  src/components/Typography/Typography.spec.tsx
2802
+ RUNS  src/components/Chip/Chip.spec.tsx
2803
+ RUNS  src/components/Card/Card.spec.tsx
2804
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2805
+ RUNS  src/components/TextField/TextField.spec.tsx
2806
+ RUNS  src/components/Range/Range.spec.tsx
2807
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2808
+ 
2809
+ Test Suites: 6 passed, 6 of 17 total
2810
+ Tests: 76 passed, 76 total
2811
+ Snapshots: 0 total
2812
+  Table UI
2813
+ 
2814
+ RUNS  src/components/Toast/Toast.spec.tsx
2815
+ RUNS  src/components/Table/Table.spec.tsx
2816
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2817
+ RUNS  src/components/Button/Button.spec.tsx
2818
+ RUNS  src/components/Typography/Typography.spec.tsx
2819
+ RUNS  src/components/Chip/Chip.spec.tsx
2820
+ RUNS  src/components/Card/Card.spec.tsx
2821
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2822
+ RUNS  src/components/TextField/TextField.spec.tsx
2823
+ RUNS  src/components/Range/Range.spec.tsx
2824
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2825
+ 
2826
+ Test Suites: 6 passed, 6 of 17 total
2827
+ Tests: 76 passed, 76 total
2828
+ Snapshots: 0 total
2829
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (60 ms)
2830
+ 
2831
+ RUNS  src/components/Toast/Toast.spec.tsx
2832
+ RUNS  src/components/Table/Table.spec.tsx
2833
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2834
+ RUNS  src/components/Button/Button.spec.tsx
2835
+ RUNS  src/components/Typography/Typography.spec.tsx
2836
+ RUNS  src/components/Chip/Chip.spec.tsx
2837
+ RUNS  src/components/Card/Card.spec.tsx
2838
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2839
+ RUNS  src/components/TextField/TextField.spec.tsx
2840
+ RUNS  src/components/Range/Range.spec.tsx
2841
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2842
+ 
2843
+ Test Suites: 6 passed, 6 of 17 total
2844
+ Tests: 76 passed, 76 total
2845
+ Snapshots: 0 total
2846
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (13 ms)
2847
+ 
2848
+ RUNS  src/components/Toast/Toast.spec.tsx
2849
+ RUNS  src/components/Table/Table.spec.tsx
2850
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2851
+ RUNS  src/components/Button/Button.spec.tsx
2852
+ RUNS  src/components/Typography/Typography.spec.tsx
2853
+ RUNS  src/components/Chip/Chip.spec.tsx
2854
+ RUNS  src/components/Card/Card.spec.tsx
2855
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2856
+ RUNS  src/components/TextField/TextField.spec.tsx
2857
+ RUNS  src/components/Range/Range.spec.tsx
2858
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2859
+ 
2860
+ Test Suites: 6 passed, 6 of 17 total
2861
+ Tests: 76 passed, 76 total
2862
+ Snapshots: 0 total
2863
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (4 ms)
2864
+ 
2865
+ RUNS  src/components/Toast/Toast.spec.tsx
2866
+ RUNS  src/components/Table/Table.spec.tsx
2867
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2868
+ RUNS  src/components/Button/Button.spec.tsx
2869
+ RUNS  src/components/Typography/Typography.spec.tsx
2870
+ RUNS  src/components/Chip/Chip.spec.tsx
2871
+ RUNS  src/components/Card/Card.spec.tsx
2872
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2873
+ RUNS  src/components/TextField/TextField.spec.tsx
2874
+ RUNS  src/components/Range/Range.spec.tsx
2875
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2876
+ 
2877
+ Test Suites: 6 passed, 6 of 17 total
2878
+ Tests: 76 passed, 76 total
2879
+ Snapshots: 0 total
2880
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
2881
+ 
2882
+ RUNS  src/components/Toast/Toast.spec.tsx
2883
+ RUNS  src/components/Table/Table.spec.tsx
2884
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2885
+ RUNS  src/components/Button/Button.spec.tsx
2886
+ RUNS  src/components/Typography/Typography.spec.tsx
2887
+ RUNS  src/components/Chip/Chip.spec.tsx
2888
+ RUNS  src/components/Card/Card.spec.tsx
2889
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2890
+ RUNS  src/components/TextField/TextField.spec.tsx
2891
+ RUNS  src/components/Range/Range.spec.tsx
2892
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2893
+ 
2894
+ Test Suites: 6 passed, 6 of 17 total
2895
+ Tests: 76 passed, 76 total
2896
+ Snapshots: 0 total
2897
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (31 ms)
2898
+ 
2899
+ RUNS  src/components/Toast/Toast.spec.tsx
2900
+ RUNS  src/components/Table/Table.spec.tsx
2901
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2902
+ RUNS  src/components/Button/Button.spec.tsx
2903
+ RUNS  src/components/Typography/Typography.spec.tsx
2904
+ RUNS  src/components/Chip/Chip.spec.tsx
2905
+ RUNS  src/components/Card/Card.spec.tsx
2906
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2907
+ RUNS  src/components/TextField/TextField.spec.tsx
2908
+ RUNS  src/components/Range/Range.spec.tsx
2909
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2910
+ 
2911
+ Test Suites: 6 passed, 6 of 17 total
2912
+ Tests: 76 passed, 76 total
2913
+ Snapshots: 0 total
2914
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
2915
+ 
2916
+ RUNS  src/components/Toast/Toast.spec.tsx
2917
+ RUNS  src/components/Table/Table.spec.tsx
2918
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx
2919
+ RUNS  src/components/Button/Button.spec.tsx
2920
+ RUNS  src/components/Typography/Typography.spec.tsx
2921
+ RUNS  src/components/Chip/Chip.spec.tsx
2922
+ RUNS  src/components/Card/Card.spec.tsx
2923
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2924
+ RUNS  src/components/TextField/TextField.spec.tsx
2925
+ RUNS  src/components/Range/Range.spec.tsx
2926
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2927
+ 
2928
+ Test Suites: 6 passed, 6 of 17 total
2929
+ Tests: 76 passed, 76 total
2930
+ Snapshots: 0 total
2931
+ 
2932
+ 
2933
+ 
2934
+ 
2935
+ 
2936
+ 
2937
+ 
2938
+ 
2939
+ 
2940
+ 
2941
+ 
2942
+ 
2943
+ 
2944
+ 
2945
+ 
2946
+ [?25h RUNS  src/components/Toast/Toast.spec.tsx
2947
+ RUNS  src/components/Table/Table.spec.tsx
2948
+ RUNS  src/hooks/useDialog/useDialog.spec.tsx 
2949
+ RUNS  src/components/Button/Button.spec.tsx 
2950
+ RUNS  src/components/Typography/Typography.spec.tsx
2951
+ RUNS  src/components/Chip/Chip.spec.tsx
2952
+ RUNS  src/components/Card/Card.spec.tsx
2953
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx 
2954
+ RUNS  src/components/TextField/TextField.spec.tsx 
2955
+ RUNS  src/components/Range/Range.spec.tsx
2956
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2957
+ 
2958
+ Test Suites: 6 passed, 6 of 17 total
2959
+ Tests: 76 passed, 76 total
2960
+ Snapshots: 0 total
2961
+ Time: 10 s RUNS  src/components/Chip/Chip.spec.tsx
2962
+ RUNS  src/components/Card/Card.spec.tsx
2963
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2964
+ RUNS  src/components/TextField/TextField.spec.tsx
2965
+ RUNS  src/components/Range/Range.spec.tsx
2966
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2967
+ 
2968
+ Test Suites: 11 passed, 11 of 17 total
2969
+ Tests: 1 skipped, 95 passed, 96 total
2970
+ Snapshots: 0 total
2971
+ Time: 10 s
2972
+ 
2973
+ 
2974
+ 
2975
+ 
2976
+ [?25h
2977
+ 
2978
+ 
2979
+ 
2980
+ 
2981
+ 
2982
+ 
2983
+ 
2984
+ 
2985
+ 
2986
+ [?25h PASS  src/components/Skeleton/Skeleton.spec.tsx
2987
+ Skeleton ์ปดํฌ๋„ŒํŠธ
2988
+ Skeleton UI
2989
+ โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (4 ms)
2990
+ โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
2991
+ โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
2992
+ 
2993
+ RUNS  src/components/Chip/Chip.spec.tsx
2994
+ RUNS  src/components/Card/Card.spec.tsx
2995
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
2996
+ RUNS  src/components/TextField/TextField.spec.tsx
2997
+ RUNS  src/components/Range/Range.spec.tsx
2998
+ RUNS  src/components/Navigation/Navigation.spec.tsx
2999
+ 
3000
+ Test Suites: 11 passed, 11 of 17 total
3001
+ Tests: 1 skipped, 95 passed, 96 total
3002
+ Snapshots: 0 total
3003
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3004
+ 
3005
+ RUNS  src/components/Chip/Chip.spec.tsx
3006
+ RUNS  src/components/Card/Card.spec.tsx
3007
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
3008
+ RUNS  src/components/TextField/TextField.spec.tsx
3009
+ RUNS  src/components/Range/Range.spec.tsx
3010
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3011
+ 
3012
+ Test Suites: 11 passed, 11 of 17 total
3013
+ Tests: 1 skipped, 95 passed, 96 total
3014
+ Snapshots: 0 total
3015
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (12 ms)
3016
+ 
3017
+ RUNS  src/components/Chip/Chip.spec.tsx
3018
+ RUNS  src/components/Card/Card.spec.tsx
3019
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
3020
+ RUNS  src/components/TextField/TextField.spec.tsx
3021
+ RUNS  src/components/Range/Range.spec.tsx
3022
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3023
+ 
3024
+ Test Suites: 11 passed, 11 of 17 total
3025
+ Tests: 1 skipped, 95 passed, 96 total
3026
+ Snapshots: 0 total
3027
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3028
+ 
3029
+ RUNS  src/components/Chip/Chip.spec.tsx
3030
+ RUNS  src/components/Card/Card.spec.tsx
3031
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
3032
+ RUNS  src/components/TextField/TextField.spec.tsx
3033
+ RUNS  src/components/Range/Range.spec.tsx
3034
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3035
+ 
3036
+ Test Suites: 11 passed, 11 of 17 total
3037
+ Tests: 1 skipped, 95 passed, 96 total
3038
+ Snapshots: 0 total
3039
+ Time: 10 s
3040
+ RUNS  src/components/Chip/Chip.spec.tsx
3041
+ RUNS  src/components/Card/Card.spec.tsx
3042
+ RUNS  src/components/Skeleton/Skeleton.spec.tsx
3043
+ RUNS  src/components/TextField/TextField.spec.tsx
3044
+ RUNS  src/components/Range/Range.spec.tsx
3045
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3046
+ 
3047
+ Test Suites: 11 passed, 11 of 17 total
3048
+ Tests: 1 skipped, 95 passed, 96 total
3049
+ Snapshots: 0 total
3050
+ Time: 10 s
3051
+ 
3052
+ 
3053
+ 
3054
+ 
3055
+ 
3056
+ 
3057
+ 
3058
+ 
3059
+ 
3060
+ [?25h PASS  src/components/Range/Range.spec.tsx
3061
+ 
3062
+ RUNS  src/components/Chip/Chip.spec.tsx
3063
+ RUNS  src/components/Card/Card.spec.tsx
3064
+ RUNS  src/components/TextField/TextField.spec.tsx
3065
+ RUNS  src/components/Range/Range.spec.tsx
3066
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3067
+ 
3068
+ Test Suites: 12 passed, 12 of 17 total
3069
+ Tests: 1 skipped, 106 passed, 107 total
3070
+ Snapshots: 0 total
3071
+ Time: 10 s Range ์ปดํฌ๋„ŒํŠธ
3072
+ 
3073
+ RUNS  src/components/Chip/Chip.spec.tsx
3074
+ RUNS  src/components/Card/Card.spec.tsx
3075
+ RUNS  src/components/TextField/TextField.spec.tsx
3076
+ RUNS  src/components/Range/Range.spec.tsx
3077
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3078
+ 
3079
+ Test Suites: 12 passed, 12 of 17 total
3080
+ Tests: 1 skipped, 106 passed, 107 total
3081
+ Snapshots: 0 total
3082
+  Range UI
3083
+ 
3084
+ RUNS  src/components/Chip/Chip.spec.tsx
3085
+ RUNS  src/components/Card/Card.spec.tsx
3086
+ RUNS  src/components/TextField/TextField.spec.tsx
3087
+ RUNS  src/components/Range/Range.spec.tsx
3088
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3089
+ 
3090
+ Test Suites: 12 passed, 12 of 17 total
3091
+ Tests: 1 skipped, 106 passed, 107 total
3092
+ Snapshots: 0 total
3093
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (7 ms)
3094
+ 
3095
+ RUNS  src/components/Chip/Chip.spec.tsx
3096
+ RUNS  src/components/Card/Card.spec.tsx
3097
+ RUNS  src/components/TextField/TextField.spec.tsx
3098
+ RUNS  src/components/Range/Range.spec.tsx
3099
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3100
+ 
3101
+ Test Suites: 12 passed, 12 of 17 total
3102
+ Tests: 1 skipped, 106 passed, 107 total
3103
+ Snapshots: 0 total
3104
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
3105
+ 
3106
+ RUNS  src/components/Chip/Chip.spec.tsx
3107
+ RUNS  src/components/Card/Card.spec.tsx
3108
+ RUNS  src/components/TextField/TextField.spec.tsx
3109
+ RUNS  src/components/Range/Range.spec.tsx
3110
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3111
+ 
3112
+ Test Suites: 12 passed, 12 of 17 total
3113
+ Tests: 1 skipped, 106 passed, 107 total
3114
+ Snapshots: 0 total
3115
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3116
+ 
3117
+ RUNS  src/components/Chip/Chip.spec.tsx
3118
+ RUNS  src/components/Card/Card.spec.tsx
3119
+ RUNS  src/components/TextField/TextField.spec.tsx
3120
+ RUNS  src/components/Range/Range.spec.tsx
3121
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3122
+ 
3123
+ Test Suites: 12 passed, 12 of 17 total
3124
+ Tests: 1 skipped, 106 passed, 107 total
3125
+ Snapshots: 0 total
3126
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3127
+ 
3128
+ RUNS  src/components/Chip/Chip.spec.tsx
3129
+ RUNS  src/components/Card/Card.spec.tsx
3130
+ RUNS  src/components/TextField/TextField.spec.tsx
3131
+ RUNS  src/components/Range/Range.spec.tsx
3132
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3133
+ 
3134
+ Test Suites: 12 passed, 12 of 17 total
3135
+ Tests: 1 skipped, 106 passed, 107 total
3136
+ Snapshots: 0 total
3137
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (14 ms)
3138
+ 
3139
+ RUNS  src/components/Chip/Chip.spec.tsx
3140
+ RUNS  src/components/Card/Card.spec.tsx
3141
+ RUNS  src/components/TextField/TextField.spec.tsx
3142
+ RUNS  src/components/Range/Range.spec.tsx
3143
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3144
+ 
3145
+ Test Suites: 12 passed, 12 of 17 total
3146
+ Tests: 1 skipped, 106 passed, 107 total
3147
+ Snapshots: 0 total
3148
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
3149
+ 
3150
+ RUNS  src/components/Chip/Chip.spec.tsx
3151
+ RUNS  src/components/Card/Card.spec.tsx
3152
+ RUNS  src/components/TextField/TextField.spec.tsx
3153
+ RUNS  src/components/Range/Range.spec.tsx
3154
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3155
+ 
3156
+ Test Suites: 12 passed, 12 of 17 total
3157
+ Tests: 1 skipped, 106 passed, 107 total
3158
+ Snapshots: 0 total
3159
+ 
3160
+ RUNS  src/components/Chip/Chip.spec.tsx
3161
+ RUNS  src/components/Card/Card.spec.tsx
3162
+ RUNS  src/components/TextField/TextField.spec.tsx
3163
+ RUNS  src/components/Range/Range.spec.tsx
3164
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3165
+ 
3166
+ Test Suites: 12 passed, 12 of 17 total
3167
+ Tests: 1 skipped, 106 passed, 107 total
3168
+ Snapshots: 0 total
3169
+ Time: 10 s PASS  src/components/TextField/TextField.spec.tsx
3170
+ 
3171
+ RUNS  src/components/Chip/Chip.spec.tsx
3172
+ RUNS  src/components/Card/Card.spec.tsx
3173
+ RUNS  src/components/TextField/TextField.spec.tsx
3174
+ RUNS  src/components/Range/Range.spec.tsx
3175
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3176
+ 
3177
+ Test Suites: 12 passed, 12 of 17 total
3178
+ Tests: 1 skipped, 106 passed, 107 total
3179
+ Snapshots: 0 total
3180
+  TextField ์ปดํฌ๋„ŒํŠธ
3181
+ 
3182
+ RUNS  src/components/Chip/Chip.spec.tsx
3183
+ RUNS  src/components/Card/Card.spec.tsx
3184
+ RUNS  src/components/TextField/TextField.spec.tsx
3185
+ RUNS  src/components/Range/Range.spec.tsx
3186
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3187
+ 
3188
+ Test Suites: 12 passed, 12 of 17 total
3189
+ Tests: 1 skipped, 106 passed, 107 total
3190
+ Snapshots: 0 total
3191
+  TextField UI
3192
+ 
3193
+ RUNS  src/components/Chip/Chip.spec.tsx
3194
+ RUNS  src/components/Card/Card.spec.tsx
3195
+ RUNS  src/components/TextField/TextField.spec.tsx
3196
+ RUNS  src/components/Range/Range.spec.tsx
3197
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3198
+ 
3199
+ Test Suites: 12 passed, 12 of 17 total
3200
+ Tests: 1 skipped, 106 passed, 107 total
3201
+ Snapshots: 0 total
3202
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (5 ms)
3203
+ 
3204
+ RUNS  src/components/Chip/Chip.spec.tsx
3205
+ RUNS  src/components/Card/Card.spec.tsx
3206
+ RUNS  src/components/TextField/TextField.spec.tsx
3207
+ RUNS  src/components/Range/Range.spec.tsx
3208
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3209
+ 
3210
+ Test Suites: 12 passed, 12 of 17 total
3211
+ Tests: 1 skipped, 106 passed, 107 total
3212
+ Snapshots: 0 total
3213
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3214
+ 
3215
+ RUNS  src/components/Chip/Chip.spec.tsx
3216
+ RUNS  src/components/Card/Card.spec.tsx
3217
+ RUNS  src/components/TextField/TextField.spec.tsx
3218
+ RUNS  src/components/Range/Range.spec.tsx
3219
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3220
+ 
3221
+ Test Suites: 12 passed, 12 of 17 total
3222
+ Tests: 1 skipped, 106 passed, 107 total
3223
+ Snapshots: 0 total
3224
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3225
+ 
3226
+ RUNS  src/components/Chip/Chip.spec.tsx
3227
+ RUNS  src/components/Card/Card.spec.tsx
3228
+ RUNS  src/components/TextField/TextField.spec.tsx
3229
+ RUNS  src/components/Range/Range.spec.tsx
3230
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3231
+ 
3232
+ Test Suites: 12 passed, 12 of 17 total
3233
+ Tests: 1 skipped, 106 passed, 107 total
3234
+ Snapshots: 0 total
3235
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3236
+ 
3237
+ RUNS  src/components/Chip/Chip.spec.tsx
3238
+ RUNS  src/components/Card/Card.spec.tsx
3239
+ RUNS  src/components/TextField/TextField.spec.tsx
3240
+ RUNS  src/components/Range/Range.spec.tsx
3241
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3242
+ 
3243
+ Test Suites: 12 passed, 12 of 17 total
3244
+ Tests: 1 skipped, 106 passed, 107 total
3245
+ Snapshots: 0 total
3246
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (16 ms)
3247
+ 
3248
+ RUNS  src/components/Chip/Chip.spec.tsx
3249
+ RUNS  src/components/Card/Card.spec.tsx
3250
+ RUNS  src/components/TextField/TextField.spec.tsx
3251
+ RUNS  src/components/Range/Range.spec.tsx
3252
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3253
+ 
3254
+ Test Suites: 12 passed, 12 of 17 total
3255
+ Tests: 1 skipped, 106 passed, 107 total
3256
+ Snapshots: 0 total
3257
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3258
+ 
3259
+ RUNS  src/components/Chip/Chip.spec.tsx
3260
+ RUNS  src/components/Card/Card.spec.tsx
3261
+ RUNS  src/components/TextField/TextField.spec.tsx
3262
+ RUNS  src/components/Range/Range.spec.tsx
3263
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3264
+ 
3265
+ Test Suites: 12 passed, 12 of 17 total
3266
+ Tests: 1 skipped, 106 passed, 107 total
3267
+ Snapshots: 0 total
3268
+ 
3269
+ RUNS  src/components/Chip/Chip.spec.tsx
3270
+ RUNS  src/components/Card/Card.spec.tsx
3271
+ RUNS  src/components/TextField/TextField.spec.tsx
3272
+ RUNS  src/components/Range/Range.spec.tsx
3273
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3274
+ 
3275
+ Test Suites: 12 passed, 12 of 17 total
3276
+ Tests: 1 skipped, 106 passed, 107 total
3277
+ Snapshots: 0 total
3278
+ Time: 10 s RUNS  src/components/Chip/Chip.spec.tsx
3279
+ RUNS  src/components/Card/Card.spec.tsx
3280
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3281
+ 
3282
+ Test Suites: 14 passed, 14 of 17 total
3283
+ Tests: 1 skipped, 113 passed, 114 total
3284
+ Snapshots: 0 total
3285
+ Time: 10 s
3286
+ 
3287
+ [?25h
3288
+ 
3289
+ 
3290
+ 
3291
+ 
3292
+ 
3293
+ 
3294
+ [?25h PASS  src/components/Chip/Chip.spec.tsx
3295
+ Chip ์ปดํฌ๋„ŒํŠธ
3296
+ Chip UI
3297
+ 
3298
+ RUNS  src/components/Chip/Chip.spec.tsx
3299
+ RUNS  src/components/Card/Card.spec.tsx
3300
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3301
+ 
3302
+ Test Suites: 14 passed, 14 of 17 total
3303
+ Tests: 1 skipped, 113 passed, 114 total
3304
+ Snapshots: 0 total
3305
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (3 ms)
3306
+ 
3307
+ RUNS  src/components/Chip/Chip.spec.tsx
3308
+ RUNS  src/components/Card/Card.spec.tsx
3309
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3310
+ 
3311
+ Test Suites: 14 passed, 14 of 17 total
3312
+ Tests: 1 skipped, 113 passed, 114 total
3313
+ Snapshots: 0 total
3314
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3315
+ 
3316
+ RUNS  src/components/Chip/Chip.spec.tsx
3317
+ RUNS  src/components/Card/Card.spec.tsx
3318
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3319
+ 
3320
+ Test Suites: 14 passed, 14 of 17 total
3321
+ Tests: 1 skipped, 113 passed, 114 total
3322
+ Snapshots: 0 total
3323
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3324
+ 
3325
+ RUNS  src/components/Chip/Chip.spec.tsx
3326
+ RUNS  src/components/Card/Card.spec.tsx
3327
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3328
+ 
3329
+ Test Suites: 14 passed, 14 of 17 total
3330
+ Tests: 1 skipped, 113 passed, 114 total
3331
+ Snapshots: 0 total
3332
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3333
+ 
3334
+ RUNS  src/components/Chip/Chip.spec.tsx
3335
+ RUNS  src/components/Card/Card.spec.tsx
3336
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3337
+ 
3338
+ Test Suites: 14 passed, 14 of 17 total
3339
+ Tests: 1 skipped, 113 passed, 114 total
3340
+ Snapshots: 0 total
3341
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (7 ms)
3342
+ 
3343
+ RUNS  src/components/Chip/Chip.spec.tsx
3344
+ RUNS  src/components/Card/Card.spec.tsx
3345
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3346
+ 
3347
+ Test Suites: 14 passed, 14 of 17 total
3348
+ Tests: 1 skipped, 113 passed, 114 total
3349
+ Snapshots: 0 total
3350
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3351
+ 
3352
+ RUNS  src/components/Chip/Chip.spec.tsx
3353
+ RUNS  src/components/Card/Card.spec.tsx
3354
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3355
+ 
3356
+ Test Suites: 14 passed, 14 of 17 total
3357
+ Tests: 1 skipped, 113 passed, 114 total
3358
+ Snapshots: 0 total
3359
+ 
3360
+ RUNS  src/components/Chip/Chip.spec.tsx
3361
+ RUNS  src/components/Card/Card.spec.tsx
3362
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3363
+ 
3364
+ Test Suites: 14 passed, 14 of 17 total
3365
+ Tests: 1 skipped, 113 passed, 114 total
3366
+ Snapshots: 0 total
3367
+ Time: 10 s
3368
+ 
3369
+ 
3370
+ 
3371
+ 
3372
+ 
3373
+ 
3374
+ [?25h PASS  src/components/Navigation/Navigation.spec.tsx
3375
+ 
3376
+ RUNS  src/components/Chip/Chip.spec.tsx
3377
+ RUNS  src/components/Card/Card.spec.tsx
3378
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3379
+ 
3380
+ Test Suites: 14 passed, 14 of 17 total
3381
+ Tests: 1 skipped, 113 passed, 114 total 
3382
+ Snapshots: 0 total
3383
+  Navigation ์ปดํฌ๋„ŒํŠธ
3384
+ 
3385
+ RUNS  src/components/Chip/Chip.spec.tsx
3386
+ RUNS  src/components/Card/Card.spec.tsx
3387
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3388
+ 
3389
+ Test Suites: 14 passed, 14 of 17 total
3390
+ Tests: 1 skipped, 113 passed, 114 total
3391
+ Snapshots: 0 total
3392
+  NavigationAside UI
3393
+ 
3394
+ RUNS  src/components/Chip/Chip.spec.tsx
3395
+ RUNS  src/components/Card/Card.spec.tsx
3396
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3397
+ 
3398
+ Test Suites: 14 passed, 14 of 17 total
3399
+ Tests: 1 skipped, 113 passed, 114 total
3400
+ Snapshots: 0 total
3401
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (4 ms)
3402
+ 
3403
+ RUNS  src/components/Chip/Chip.spec.tsx
3404
+ RUNS  src/components/Card/Card.spec.tsx
3405
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3406
+ 
3407
+ Test Suites: 14 passed, 14 of 17 total
3408
+ Tests: 1 skipped, 113 passed, 114 total
3409
+ Snapshots: 0 total
3410
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3411
+ 
3412
+ RUNS  src/components/Chip/Chip.spec.tsx
3413
+ RUNS  src/components/Card/Card.spec.tsx
3414
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3415
+ 
3416
+ Test Suites: 14 passed, 14 of 17 total
3417
+ Tests: 1 skipped, 113 passed, 114 total
3418
+ Snapshots: 0 total
3419
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3420
+ 
3421
+ RUNS  src/components/Chip/Chip.spec.tsx
3422
+ RUNS  src/components/Card/Card.spec.tsx
3423
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3424
+ 
3425
+ Test Suites: 14 passed, 14 of 17 total
3426
+ Tests: 1 skipped, 113 passed, 114 total
3427
+ Snapshots: 0 total
3428
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3429
+ 
3430
+ RUNS  src/components/Chip/Chip.spec.tsx
3431
+ RUNS  src/components/Card/Card.spec.tsx
3432
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3433
+ 
3434
+ Test Suites: 14 passed, 14 of 17 total
3435
+ Tests: 1 skipped, 113 passed, 114 total
3436
+ Snapshots: 0 total
3437
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (7 ms)
3438
+ 
3439
+ RUNS  src/components/Chip/Chip.spec.tsx
3440
+ RUNS  src/components/Card/Card.spec.tsx
3441
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3442
+ 
3443
+ Test Suites: 14 passed, 14 of 17 total
3444
+ Tests: 1 skipped, 113 passed, 114 total
3445
+ Snapshots: 0 total
3446
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค.
3447
+ 
3448
+ RUNS  src/components/Chip/Chip.spec.tsx
3449
+ RUNS  src/components/Card/Card.spec.tsx
3450
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3451
+ 
3452
+ Test Suites: 14 passed, 14 of 17 total
3453
+ Tests: 1 skipped, 113 passed, 114 total
3454
+ Snapshots: 0 total
3455
+  NavigationBar UI
3456
+ 
3457
+ RUNS  src/components/Chip/Chip.spec.tsx
3458
+ RUNS  src/components/Card/Card.spec.tsx
3459
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3460
+ 
3461
+ Test Suites: 14 passed, 14 of 17 total
3462
+ Tests: 1 skipped, 113 passed, 114 total
3463
+ Snapshots: 0 total
3464
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (3 ms)
3465
+ 
3466
+ RUNS  src/components/Chip/Chip.spec.tsx
3467
+ RUNS  src/components/Card/Card.spec.tsx
3468
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3469
+ 
3470
+ Test Suites: 14 passed, 14 of 17 total
3471
+ Tests: 1 skipped, 113 passed, 114 total
3472
+ Snapshots: 0 total
3473
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3474
+ 
3475
+ RUNS  src/components/Chip/Chip.spec.tsx
3476
+ RUNS  src/components/Card/Card.spec.tsx
3477
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3478
+ 
3479
+ Test Suites: 14 passed, 14 of 17 total
3480
+ Tests: 1 skipped, 113 passed, 114 total
3481
+ Snapshots: 0 total
3482
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3483
+ 
3484
+ RUNS  src/components/Chip/Chip.spec.tsx
3485
+ RUNS  src/components/Card/Card.spec.tsx
3486
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3487
+ 
3488
+ Test Suites: 14 passed, 14 of 17 total
3489
+ Tests: 1 skipped, 113 passed, 114 total
3490
+ Snapshots: 0 total
3491
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3492
+ 
3493
+ RUNS  src/components/Chip/Chip.spec.tsx
3494
+ RUNS  src/components/Card/Card.spec.tsx
3495
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3496
+ 
3497
+ Test Suites: 14 passed, 14 of 17 total
3498
+ Tests: 1 skipped, 113 passed, 114 total
3499
+ Snapshots: 0 total
3500
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3501
+ 
3502
+ RUNS  src/components/Chip/Chip.spec.tsx
3503
+ RUNS  src/components/Card/Card.spec.tsx
3504
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3505
+ 
3506
+ Test Suites: 14 passed, 14 of 17 total
3507
+ Tests: 1 skipped, 113 passed, 114 total
3508
+ Snapshots: 0 total
3509
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3510
+ 
3511
+ RUNS  src/components/Chip/Chip.spec.tsx
3512
+ RUNS  src/components/Card/Card.spec.tsx
3513
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3514
+ 
3515
+ Test Suites: 14 passed, 14 of 17 total
3516
+ Tests: 1 skipped, 113 passed, 114 total
3517
+ Snapshots: 0 total
3518
+  NavigationItem UI
3519
+ 
3520
+ RUNS  src/components/Chip/Chip.spec.tsx
3521
+ RUNS  src/components/Card/Card.spec.tsx
3522
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3523
+ 
3524
+ Test Suites: 14 passed, 14 of 17 total
3525
+ Tests: 1 skipped, 113 passed, 114 total
3526
+ Snapshots: 0 total
3527
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
3528
+ 
3529
+ RUNS  src/components/Chip/Chip.spec.tsx
3530
+ RUNS  src/components/Card/Card.spec.tsx
3531
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3532
+ 
3533
+ Test Suites: 14 passed, 14 of 17 total
3534
+ Tests: 1 skipped, 113 passed, 114 total
3535
+ Snapshots: 0 total
3536
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3537
+ 
3538
+ 
3539
+ 
3540
+ 
3541
+ 
3542
+ 
3543
+ 
3544
+ [?25h
3545
+ RUNS  src/components/Chip/Chip.spec.tsx
3546
+ RUNS  src/components/Card/Card.spec.tsx
3547
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3548
+ 
3549
+ Test Suites: 14 passed, 14 of 17 total
3550
+ Tests: 1 skipped, 113 passed, 114 total 
3551
+ Snapshots: 0 total
3552
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3553
+ 
3554
+ RUNS  src/components/Chip/Chip.spec.tsx
3555
+ RUNS  src/components/Card/Card.spec.tsx
3556
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3557
+ 
3558
+ Test Suites: 14 passed, 14 of 17 total
3559
+ Tests: 1 skipped, 113 passed, 114 total
3560
+ Snapshots: 0 total
3561
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3562
+ 
3563
+ RUNS  src/components/Chip/Chip.spec.tsx
3564
+ RUNS  src/components/Card/Card.spec.tsx
3565
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3566
+ 
3567
+ Test Suites: 14 passed, 14 of 17 total
3568
+ Tests: 1 skipped, 113 passed, 114 total
3569
+ Snapshots: 0 total
3570
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
3571
+ 
3572
+ RUNS  src/components/Chip/Chip.spec.tsx
3573
+ RUNS  src/components/Card/Card.spec.tsx
3574
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3575
+ 
3576
+ Test Suites: 14 passed, 14 of 17 total
3577
+ Tests: 1 skipped, 113 passed, 114 total
3578
+ Snapshots: 0 total
3579
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3580
+ 
3581
+ RUNS  src/components/Chip/Chip.spec.tsx
3582
+ RUNS  src/components/Card/Card.spec.tsx
3583
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3584
+ 
3585
+ Test Suites: 14 passed, 14 of 17 total
3586
+ Tests: 1 skipped, 113 passed, 114 total
3587
+ Snapshots: 0 total
3588
+  NavigationLogo UI
3589
+ 
3590
+ RUNS  src/components/Chip/Chip.spec.tsx
3591
+ RUNS  src/components/Card/Card.spec.tsx
3592
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3593
+ 
3594
+ Test Suites: 14 passed, 14 of 17 total
3595
+ Tests: 1 skipped, 113 passed, 114 total
3596
+ Snapshots: 0 total
3597
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
3598
+ 
3599
+ RUNS  src/components/Chip/Chip.spec.tsx
3600
+ RUNS  src/components/Card/Card.spec.tsx
3601
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3602
+ 
3603
+ Test Suites: 14 passed, 14 of 17 total
3604
+ Tests: 1 skipped, 113 passed, 114 total
3605
+ Snapshots: 0 total
3606
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3607
+ 
3608
+ RUNS  src/components/Chip/Chip.spec.tsx
3609
+ RUNS  src/components/Card/Card.spec.tsx
3610
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3611
+ 
3612
+ Test Suites: 14 passed, 14 of 17 total
3613
+ Tests: 1 skipped, 113 passed, 114 total
3614
+ Snapshots: 0 total
3615
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3616
+ 
3617
+ RUNS  src/components/Chip/Chip.spec.tsx
3618
+ RUNS  src/components/Card/Card.spec.tsx
3619
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3620
+ 
3621
+ Test Suites: 14 passed, 14 of 17 total
3622
+ Tests: 1 skipped, 113 passed, 114 total
3623
+ Snapshots: 0 total
3624
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3625
+ 
3626
+ RUNS  src/components/Chip/Chip.spec.tsx
3627
+ RUNS  src/components/Card/Card.spec.tsx
3628
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3629
+ 
3630
+ Test Suites: 14 passed, 14 of 17 total
3631
+ Tests: 1 skipped, 113 passed, 114 total
3632
+ Snapshots: 0 total
3633
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3634
+ 
3635
+ RUNS  src/components/Chip/Chip.spec.tsx
3636
+ RUNS  src/components/Card/Card.spec.tsx
3637
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3638
+ 
3639
+ Test Suites: 14 passed, 14 of 17 total
3640
+ Tests: 1 skipped, 113 passed, 114 total
3641
+ Snapshots: 0 total
3642
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3643
+ 
3644
+ RUNS  src/components/Chip/Chip.spec.tsx
3645
+ RUNS  src/components/Card/Card.spec.tsx
3646
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3647
+ 
3648
+ Test Suites: 14 passed, 14 of 17 total
3649
+ Tests: 1 skipped, 113 passed, 114 total
3650
+ Snapshots: 0 total
3651
+  NavigationMenu UI
3652
+ 
3653
+ RUNS  src/components/Chip/Chip.spec.tsx
3654
+ RUNS  src/components/Card/Card.spec.tsx
3655
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3656
+ 
3657
+ Test Suites: 14 passed, 14 of 17 total
3658
+ Tests: 1 skipped, 113 passed, 114 total
3659
+ Snapshots: 0 total
3660
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
3661
+ 
3662
+ RUNS  src/components/Chip/Chip.spec.tsx
3663
+ RUNS  src/components/Card/Card.spec.tsx
3664
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3665
+ 
3666
+ Test Suites: 14 passed, 14 of 17 total
3667
+ Tests: 1 skipped, 113 passed, 114 total
3668
+ Snapshots: 0 total
3669
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3670
+ 
3671
+ RUNS  src/components/Chip/Chip.spec.tsx
3672
+ RUNS  src/components/Card/Card.spec.tsx
3673
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3674
+ 
3675
+ Test Suites: 14 passed, 14 of 17 total
3676
+ Tests: 1 skipped, 113 passed, 114 total
3677
+ Snapshots: 0 total
3678
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3679
+ 
3680
+ RUNS  src/components/Chip/Chip.spec.tsx
3681
+ RUNS  src/components/Card/Card.spec.tsx
3682
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3683
+ 
3684
+ Test Suites: 14 passed, 14 of 17 total
3685
+ Tests: 1 skipped, 113 passed, 114 total
3686
+ Snapshots: 0 total
3687
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3688
+ 
3689
+ RUNS  src/components/Chip/Chip.spec.tsx
3690
+ RUNS  src/components/Card/Card.spec.tsx
3691
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3692
+ 
3693
+ Test Suites: 14 passed, 14 of 17 total
3694
+ Tests: 1 skipped, 113 passed, 114 total
3695
+ Snapshots: 0 total
3696
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3697
+ 
3698
+ RUNS  src/components/Chip/Chip.spec.tsx
3699
+ RUNS  src/components/Card/Card.spec.tsx
3700
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3701
+ 
3702
+ Test Suites: 14 passed, 14 of 17 total
3703
+ Tests: 1 skipped, 113 passed, 114 total
3704
+ Snapshots: 0 total
3705
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค.
3706
+ 
3707
+ RUNS  src/components/Chip/Chip.spec.tsx
3708
+ RUNS  src/components/Card/Card.spec.tsx
3709
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3710
+ 
3711
+ Test Suites: 14 passed, 14 of 17 total
3712
+ Tests: 1 skipped, 113 passed, 114 total
3713
+ Snapshots: 0 total
3714
+  NavigationContainer UI
3715
+ 
3716
+ RUNS  src/components/Chip/Chip.spec.tsx
3717
+ RUNS  src/components/Card/Card.spec.tsx
3718
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3719
+ 
3720
+ Test Suites: 14 passed, 14 of 17 total
3721
+ Tests: 1 skipped, 113 passed, 114 total
3722
+ Snapshots: 0 total
3723
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
3724
+ 
3725
+ RUNS  src/components/Chip/Chip.spec.tsx
3726
+ RUNS  src/components/Card/Card.spec.tsx
3727
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3728
+ 
3729
+ Test Suites: 14 passed, 14 of 17 total
3730
+ Tests: 1 skipped, 113 passed, 114 total
3731
+ Snapshots: 0 total
3732
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3733
+ 
3734
+ RUNS  src/components/Chip/Chip.spec.tsx
3735
+ RUNS  src/components/Card/Card.spec.tsx
3736
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3737
+ 
3738
+ Test Suites: 14 passed, 14 of 17 total
3739
+ Tests: 1 skipped, 113 passed, 114 total
3740
+ Snapshots: 0 total
3741
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3742
+ 
3743
+ RUNS  src/components/Chip/Chip.spec.tsx
3744
+ RUNS  src/components/Card/Card.spec.tsx
3745
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3746
+ 
3747
+ Test Suites: 14 passed, 14 of 17 total
3748
+ Tests: 1 skipped, 113 passed, 114 total
3749
+ Snapshots: 0 total
3750
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3751
+ 
3752
+ RUNS  src/components/Chip/Chip.spec.tsx
3753
+ RUNS  src/components/Card/Card.spec.tsx
3754
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3755
+ 
3756
+ Test Suites: 14 passed, 14 of 17 total
3757
+ Tests: 1 skipped, 113 passed, 114 total
3758
+ Snapshots: 0 total
3759
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3760
+ 
3761
+ RUNS  src/components/Chip/Chip.spec.tsx
3762
+ RUNS  src/components/Card/Card.spec.tsx
3763
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3764
+ 
3765
+ Test Suites: 14 passed, 14 of 17 total
3766
+ Tests: 1 skipped, 113 passed, 114 total
3767
+ Snapshots: 0 total
3768
+ Time: 10 s โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค.
3769
+ 
3770
+ RUNS  src/components/Chip/Chip.spec.tsx
3771
+ RUNS  src/components/Card/Card.spec.tsx
3772
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3773
+ 
3774
+ Test Suites: 14 passed, 14 of 17 total
3775
+ Tests: 1 skipped, 113 passed, 114 total
3776
+ Snapshots: 0 total
3777
+ 
3778
+ RUNS  src/components/Chip/Chip.spec.tsx
3779
+ RUNS  src/components/Card/Card.spec.tsx
3780
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3781
+ 
3782
+ Test Suites: 14 passed, 14 of 17 total
3783
+ Tests: 1 skipped, 113 passed, 114 total
3784
+ Snapshots: 0 total
3785
+  PASS  src/components/Card/Card.spec.tsx
3786
+ 
3787
+ RUNS  src/components/Chip/Chip.spec.tsx
3788
+ RUNS  src/components/Card/Card.spec.tsx
3789
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3790
+ 
3791
+ Test Suites: 14 passed, 14 of 17 total
3792
+ Tests: 1 skipped, 113 passed, 114 total
3793
+ Snapshots: 0 total
3794
+  Card ์ปดํฌ๋„ŒํŠธ
3795
+ 
3796
+ RUNS  src/components/Chip/Chip.spec.tsx
3797
+ RUNS  src/components/Card/Card.spec.tsx
3798
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3799
+ 
3800
+ Test Suites: 14 passed, 14 of 17 total
3801
+ Tests: 1 skipped, 113 passed, 114 total
3802
+ Snapshots: 0 total
3803
+  โˆš CardInteraction์„ ํด๋ฆญํ•˜๋ฉด onClick์ด ํ˜ธ์ถœ๋˜์–ด์•ผ ํ•œ๋‹ค (6 ms)
3804
+ 
3805
+ RUNS  src/components/Chip/Chip.spec.tsx
3806
+ RUNS  src/components/Card/Card.spec.tsx
3807
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3808
+ 
3809
+ Test Suites: 14 passed, 14 of 17 total
3810
+ Tests: 1 skipped, 113 passed, 114 total
3811
+ Snapshots: 0 total
3812
+  Card UI
3813
+ 
3814
+ RUNS  src/components/Chip/Chip.spec.tsx
3815
+ RUNS  src/components/Card/Card.spec.tsx
3816
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3817
+ 
3818
+ Test Suites: 14 passed, 14 of 17 total
3819
+ Tests: 1 skipped, 113 passed, 114 total
3820
+ Snapshots: 0 total
3821
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (3 ms)
3822
+ 
3823
+ RUNS  src/components/Chip/Chip.spec.tsx
3824
+ RUNS  src/components/Card/Card.spec.tsx
3825
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3826
+ 
3827
+ Test Suites: 14 passed, 14 of 17 total
3828
+ Tests: 1 skipped, 113 passed, 114 total
3829
+ Snapshots: 0 total
3830
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3831
+ 
3832
+ RUNS  src/components/Chip/Chip.spec.tsx
3833
+ RUNS  src/components/Card/Card.spec.tsx
3834
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3835
+ 
3836
+ Test Suites: 14 passed, 14 of 17 total
3837
+ Tests: 1 skipped, 113 passed, 114 total
3838
+ Snapshots: 0 total
3839
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3840
+ 
3841
+ RUNS  src/components/Chip/Chip.spec.tsx
3842
+ RUNS  src/components/Card/Card.spec.tsx
3843
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3844
+ 
3845
+ Test Suites: 14 passed, 14 of 17 total
3846
+ Tests: 1 skipped, 113 passed, 114 total
3847
+ Snapshots: 0 total
3848
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3849
+ 
3850
+ RUNS  src/components/Chip/Chip.spec.tsx
3851
+ RUNS  src/components/Card/Card.spec.tsx
3852
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3853
+ 
3854
+ Test Suites: 14 passed, 14 of 17 total
3855
+ Tests: 1 skipped, 113 passed, 114 total
3856
+ Snapshots: 0 total
3857
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (11 ms)
3858
+ 
3859
+ RUNS  src/components/Chip/Chip.spec.tsx
3860
+ RUNS  src/components/Card/Card.spec.tsx
3861
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3862
+ 
3863
+ Test Suites: 14 passed, 14 of 17 total
3864
+ Tests: 1 skipped, 113 passed, 114 total
3865
+ Snapshots: 0 total
3866
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3867
+ 
3868
+ RUNS  src/components/Chip/Chip.spec.tsx
3869
+ RUNS  src/components/Card/Card.spec.tsx
3870
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3871
+ 
3872
+ Test Suites: 14 passed, 14 of 17 total
3873
+ Tests: 1 skipped, 113 passed, 114 total
3874
+ Snapshots: 0 total
3875
+  CardContent UI
3876
+ 
3877
+ RUNS  src/components/Chip/Chip.spec.tsx
3878
+ RUNS  src/components/Card/Card.spec.tsx
3879
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3880
+ 
3881
+ Test Suites: 14 passed, 14 of 17 total
3882
+ Tests: 1 skipped, 113 passed, 114 total
3883
+ Snapshots: 0 total
3884
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
3885
+ 
3886
+ RUNS  src/components/Chip/Chip.spec.tsx
3887
+ RUNS  src/components/Card/Card.spec.tsx
3888
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3889
+ 
3890
+ Test Suites: 14 passed, 14 of 17 total
3891
+ Tests: 1 skipped, 113 passed, 114 total
3892
+ Snapshots: 0 total
3893
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3894
+ 
3895
+ RUNS  src/components/Chip/Chip.spec.tsx
3896
+ RUNS  src/components/Card/Card.spec.tsx
3897
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3898
+ 
3899
+ Test Suites: 14 passed, 14 of 17 total
3900
+ Tests: 1 skipped, 113 passed, 114 total
3901
+ Snapshots: 0 total
3902
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3903
+ 
3904
+ RUNS  src/components/Chip/Chip.spec.tsx
3905
+ RUNS  src/components/Card/Card.spec.tsx
3906
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3907
+ 
3908
+ Test Suites: 14 passed, 14 of 17 total
3909
+ Tests: 1 skipped, 113 passed, 114 total
3910
+ Snapshots: 0 total
3911
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3912
+ 
3913
+ RUNS  src/components/Chip/Chip.spec.tsx
3914
+ RUNS  src/components/Card/Card.spec.tsx
3915
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3916
+ 
3917
+ Test Suites: 14 passed, 14 of 17 total
3918
+ Tests: 1 skipped, 113 passed, 114 total
3919
+ Snapshots: 0 total
3920
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
3921
+ 
3922
+ RUNS  src/components/Chip/Chip.spec.tsx
3923
+ RUNS  src/components/Card/Card.spec.tsx
3924
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3925
+ 
3926
+ Test Suites: 14 passed, 14 of 17 total
3927
+ Tests: 1 skipped, 113 passed, 114 total
3928
+ Snapshots: 0 total
3929
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3930
+ 
3931
+ RUNS  src/components/Chip/Chip.spec.tsx
3932
+ RUNS  src/components/Card/Card.spec.tsx
3933
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3934
+ 
3935
+ Test Suites: 14 passed, 14 of 17 total
3936
+ Tests: 1 skipped, 113 passed, 114 total
3937
+ Snapshots: 0 total
3938
+  CardInteraction UI
3939
+ 
3940
+ RUNS  src/components/Chip/Chip.spec.tsx
3941
+ RUNS  src/components/Card/Card.spec.tsx
3942
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3943
+ 
3944
+ Test Suites: 14 passed, 14 of 17 total
3945
+ Tests: 1 skipped, 113 passed, 114 total
3946
+ Snapshots: 0 total
3947
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (2 ms)
3948
+ 
3949
+ RUNS  src/components/Chip/Chip.spec.tsx
3950
+ RUNS  src/components/Card/Card.spec.tsx
3951
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3952
+ 
3953
+ Test Suites: 14 passed, 14 of 17 total
3954
+ Tests: 1 skipped, 113 passed, 114 total
3955
+ Snapshots: 0 total
3956
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3957
+ 
3958
+ RUNS  src/components/Chip/Chip.spec.tsx
3959
+ RUNS  src/components/Card/Card.spec.tsx
3960
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3961
+ 
3962
+ Test Suites: 14 passed, 14 of 17 total
3963
+ Tests: 1 skipped, 113 passed, 114 total
3964
+ Snapshots: 0 total
3965
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
3966
+ 
3967
+ RUNS  src/components/Chip/Chip.spec.tsx
3968
+ RUNS  src/components/Card/Card.spec.tsx
3969
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3970
+ 
3971
+ Test Suites: 14 passed, 14 of 17 total
3972
+ Tests: 1 skipped, 113 passed, 114 total
3973
+ Snapshots: 0 total
3974
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3975
+ 
3976
+ RUNS  src/components/Chip/Chip.spec.tsx
3977
+ RUNS  src/components/Card/Card.spec.tsx
3978
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3979
+ 
3980
+ Test Suites: 14 passed, 14 of 17 total
3981
+ Tests: 1 skipped, 113 passed, 114 total
3982
+ Snapshots: 0 total
3983
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
3984
+ 
3985
+ RUNS  src/components/Chip/Chip.spec.tsx
3986
+ RUNS  src/components/Card/Card.spec.tsx
3987
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3988
+ 
3989
+ Test Suites: 14 passed, 14 of 17 total
3990
+ Tests: 1 skipped, 113 passed, 114 total
3991
+ Snapshots: 0 total
3992
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
3993
+ 
3994
+ RUNS  src/components/Chip/Chip.spec.tsx
3995
+ RUNS  src/components/Card/Card.spec.tsx
3996
+ RUNS  src/components/Navigation/Navigation.spec.tsx
3997
+ 
3998
+ Test Suites: 14 passed, 14 of 17 total
3999
+ Tests: 1 skipped, 113 passed, 114 total
4000
+ Snapshots: 0 total
4001
+ Time: 10 s CardThumbnail UI
4002
+ 
4003
+ RUNS  src/components/Chip/Chip.spec.tsx
4004
+ RUNS  src/components/Card/Card.spec.tsx
4005
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4006
+ 
4007
+ Test Suites: 14 passed, 14 of 17 total
4008
+ Tests: 1 skipped, 113 passed, 114 total
4009
+ Snapshots: 0 total
4010
+  โˆš ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋ Œ๋”๋ง๋œ๋‹ค. (1 ms)
4011
+ 
4012
+ RUNS  src/components/Chip/Chip.spec.tsx
4013
+ RUNS  src/components/Card/Card.spec.tsx
4014
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4015
+ 
4016
+ Test Suites: 14 passed, 14 of 17 total
4017
+ Tests: 1 skipped, 113 passed, 114 total
4018
+ Snapshots: 0 total
4019
+  โˆš sprinkles์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (2 ms)
4020
+ 
4021
+ RUNS  src/components/Chip/Chip.spec.tsx
4022
+ RUNS  src/components/Card/Card.spec.tsx
4023
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4024
+ 
4025
+ Test Suites: 14 passed, 14 of 17 total
4026
+ Tests: 1 skipped, 113 passed, 114 total
4027
+ Snapshots: 0 total
4028
+  โˆš sx๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
4029
+ 
4030
+ RUNS  src/components/Chip/Chip.spec.tsx
4031
+ RUNS  src/components/Card/Card.spec.tsx
4032
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4033
+ 
4034
+ Test Suites: 14 passed, 14 of 17 total
4035
+ Tests: 1 skipped, 113 passed, 114 total
4036
+ Snapshots: 0 total
4037
+  โˆš className์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
4038
+ 
4039
+ RUNS  src/components/Chip/Chip.spec.tsx
4040
+ RUNS  src/components/Card/Card.spec.tsx
4041
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4042
+ 
4043
+ Test Suites: 14 passed, 14 of 17 total
4044
+ Tests: 1 skipped, 113 passed, 114 total
4045
+ Snapshots: 0 total
4046
+  โˆš inline style์„ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (3 ms)
4047
+ 
4048
+ RUNS  src/components/Chip/Chip.spec.tsx
4049
+ RUNS  src/components/Card/Card.spec.tsx
4050
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4051
+ 
4052
+ Test Suites: 14 passed, 14 of 17 total
4053
+ Tests: 1 skipped, 113 passed, 114 total
4054
+ Snapshots: 0 total
4055
+  โˆš ref๋ฅผ ์ ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. (1 ms)
4056
+ 
4057
+ RUNS  src/components/Chip/Chip.spec.tsx
4058
+ RUNS  src/components/Card/Card.spec.tsx
4059
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4060
+ 
4061
+ Test Suites: 14 passed, 14 of 17 total
4062
+ Tests: 1 skipped, 113 passed, 114 total
4063
+ Snapshots: 0 total
4064
+ 
4065
+ RUNS  src/components/Chip/Chip.spec.tsx
4066
+ RUNS  src/components/Card/Card.spec.tsx
4067
+ RUNS  src/components/Navigation/Navigation.spec.tsx
4068
+ 
4069
+ Test Suites: 14 passed, 14 of 17 total
4070
+ Tests: 1 skipped, 113 passed, 114 total
4071
+ Snapshots: 0 total
4072
+ Time: 10 s
4073
+ Test Suites: 17 passed, 17 total
4074
+ Tests: 1 skipped, 180 passed, 181 total
4075
+ Snapshots: 0 total
4076
+ Time: 10 s
4077
+ 
4078
+ 
4079
+ [?25hTest Suites: 17 passed, 17 total
4080
+ Tests: 1 skipped, 180 passed, 181 total
4081
+ Snapshots: 0 total
4082
+ Time: 10.822 s
4083
+ Ran all test suites.
4084
+ [?25h