diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-10-19 19:30:54 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-11 18:14:41 +0100 |
| commit | c3cde71e60ae22d17c1d162f678f592915ac5398 (patch) | |
| tree | 770856e0876b8c613a21fa79199d6d40609d73e6 /src/components/molecules/nav/nav-link/nav-link.test.tsx | |
| parent | 94448fa278ab352a741ff13f22d6104869571144 (diff) | |
refactor(components): rewrite NavLink component
* handle style variants to avoid declaring the styles in consumers
Diffstat (limited to 'src/components/molecules/nav/nav-link/nav-link.test.tsx')
| -rw-r--r-- | src/components/molecules/nav/nav-link/nav-link.test.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/molecules/nav/nav-link/nav-link.test.tsx b/src/components/molecules/nav/nav-link/nav-link.test.tsx index aa9b557..e4c2d57 100644 --- a/src/components/molecules/nav/nav-link/nav-link.test.tsx +++ b/src/components/molecules/nav/nav-link/nav-link.test.tsx @@ -15,14 +15,14 @@ describe('NavLink', () => { ); }); - it('can render a nav link with inlined contents', () => { + it('can render a nav link with stacked contents', () => { const label = 'eius'; const target = '#harum'; - render(<NavLink href={target} isInline label={label} />); + render(<NavLink href={target} isStack label={label} />); expect(rtlScreen.getByRole('link', { name: label })).toHaveClass( - 'link--inline' + 'link--stack' ); }); }); |
