Skip to content

Commit

Permalink
fix: 테스트 코드, 오탈자 수정 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
hin6150 committed May 20, 2024
1 parent aa159e1 commit 182fe45
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/design-system/src/assets/Icon/Icon.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ describe('Icon', () => {
it('Icon은 정상적으로 렌더링 된다.', () => {
render(<Icon />)

expect(screen.getByText('Icon')).toBeInTheDocument()
expect(screen.getByAltText('Icon')).toBeInTheDocument()
})
})
4 changes: 2 additions & 2 deletions packages/design-system/src/components/List/List.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const list = recipe({
width: 220,
color: vars.colors['semantic-label-alternative'],
},
descrption: {
description: {
width: 480,
paddingRight: 100,
},
Expand All @@ -37,7 +37,7 @@ export const list = recipe({
width: 120,
padding: '8px 12px',
},
descrption: {
description: {
width: 340,
padding: '8px, 40px, 8px, 12px',
},
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/src/components/List/List.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { List } from '.'

describe('List', () => {
it('List는 정상적으로 렌더링 된다.', () => {
render(<List>Text</List>)
render(<List>List</List>)

expect(screen.getByText('List')).toBeInTheDocument()
})
Expand Down

0 comments on commit 182fe45

Please sign in to comment.