|
1 | 1 | import { test } from "vitest"; |
2 | 2 |
|
3 | | -/** children이 올바르게 렌더링되는지 확인합니다. */ |
4 | | -test("renders children correctly"); |
| 3 | +test.todo("renders children correctly"); |
5 | 4 |
|
6 | | -/** tone prop에 따라 올바른 톤이 적용되는지 확인합니다. */ |
7 | | -test("applies the correct tone based on the 'tone' prop"); |
| 5 | +test.todo("applies the correct tone based on the 'tone' prop"); |
8 | 6 |
|
9 | | -/** size prop에 따라 올바른 폰트 크기가 적용되는지 확인합니다. */ |
10 | | -test("applies the correct font size based on the 'size' prop"); |
| 7 | +test.todo("applies the correct font size based on the 'size' prop"); |
11 | 8 |
|
12 | | -/** weight prop에 따라 올바른 폰트 굵기가 적용되는지 확인합니다. */ |
13 | | -test("applies the correct font weight based on the 'weight' prop"); |
| 9 | +test.todo("applies the correct font weight based on the 'weight' prop"); |
14 | 10 |
|
15 | | -/** muted가 true일 때 명암비가 낮게 렌더링되는지 확인합니다. */ |
16 | | -test("renders with reduced contrast when 'muted' is true"); |
| 11 | +test.todo("renders with reduced contrast when 'muted' is true"); |
17 | 12 |
|
18 | | -/** underline이 true일 때 밑줄이 표시되는지 확인합니다. */ |
19 | | -test("renders with underline when 'underline' is true"); |
| 13 | +test.todo("renders with underline when 'underline' is true"); |
20 | 14 |
|
21 | | -/** href, target 등의 추가 anchor 속성이 정상적으로 전달되는지 확인합니다. */ |
22 | | -test("forwards additional anchor props like 'href' and 'target'"); |
| 15 | +test.todo("forwards additional anchor props like 'href' and 'target'"); |
23 | 16 |
|
24 | | -/** target이 '_blank'일 때 보안을 위해 rel="noopener noreferrer"가 자동으로 추가되는지 확인합니다. */ |
25 | | -test("adds rel='noopener noreferrer' when target is '_blank'"); |
| 17 | +test.todo("adds rel='noopener noreferrer' when target is '_blank'"); |
26 | 18 |
|
27 | | -/** Icon 컴포넌트와 같이 사용할 수 있는지 확인합니다. */ |
28 | | -test("can be used with Icon component"); |
| 19 | +test.todo("can be used with Icon component"); |
0 commit comments