diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-10-20 14:06:48 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-11 18:14:41 +0100 |
| commit | c6f6f8f895e68f2d85ca681997ef613d982bac14 (patch) | |
| tree | 50e21f0721781aad231445c4e5af24deadb2d0de /src/components/molecules/nav/nav-list.test.tsx | |
| parent | c3cde71e60ae22d17c1d162f678f592915ac5398 (diff) | |
refactor(components): rewrite NavList component
* extract NavItem from NavList
* remove `kind` and `listClassName` props (since the consumer has
control over NavList, NavItem and NavLink components these props are
obsolete)
Diffstat (limited to 'src/components/molecules/nav/nav-list.test.tsx')
| -rw-r--r-- | src/components/molecules/nav/nav-list.test.tsx | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/components/molecules/nav/nav-list.test.tsx b/src/components/molecules/nav/nav-list.test.tsx deleted file mode 100644 index 8524e22..0000000 --- a/src/components/molecules/nav/nav-list.test.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import { describe, expect, it } from '@jest/globals'; -import { render, screen as rtlScreen } from '../../../../tests/utils'; -import { Icon } from '../../atoms'; -import { NavList, type NavItem } from './nav-list'; - -const navItems: NavItem[] = [ - { id: 'homeLink', href: '/', label: 'Home', logo: <Icon shape="home" /> }, - { - id: 'contactLink', - href: '/contact', - label: 'Contact', - logo: <Icon shape="envelop" />, - }, -]; - -describe('Nav', () => { - it('renders a main navigation', () => { - render(<NavList kind="main" items={navItems} />); - expect(rtlScreen.getByRole('navigation')).toHaveClass('nav--main'); - }); - - it('renders a footer navigation', () => { - render(<NavList kind="footer" items={navItems} />); - expect(rtlScreen.getByRole('navigation')).toHaveClass('nav--footer'); - }); - - it('renders navigation links', () => { - render(<NavList kind="main" items={navItems} />); - expect( - rtlScreen.getByRole('link', { name: navItems[0].label }) - ).toHaveAttribute('href', navItems[0].href); - }); -}); |
