Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Naszalyi committed Nov 18, 2024
1 parent 74e7c97 commit 5833556
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions packages/react/components/tag/list/test/TagList.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,6 @@ describe('TagList component', () => {
expect(screen.getByText('DEFAULT')).toHaveClass('tags')
})

test('should have "centered" className when centered prop is true', () => {
render(<TagList centered>Centered Tag List</TagList>)

expect(screen.getByText('Centered Tag List')).toHaveClass(is('centered'))
})

test('should have no margins between tags when gapless prop is true', () => {
render(<TagList gapless>Gapless Tag List</TagList>)

expect(screen.getByText('Gapless Tag List')).toHaveClass(is('gapless'))
})

test('should have no margins around tag list when marginless prop is true', () => {
render(<TagList marginless>Marginless Tag List</TagList>)

Expand Down

0 comments on commit 5833556

Please sign in to comment.