|
| 1 | +import { describe, expect, it } from 'vitest' |
| 2 | +import { mountSuspended } from '@nuxt/test-utils/runtime' |
| 3 | +import AppHeader from '~/components/AppHeader.vue' |
| 4 | + |
| 5 | +describe('AppHeader', () => { |
| 6 | + it('renders a search input area', async () => { |
| 7 | + const wrapper = await mountSuspended(AppHeader, { |
| 8 | + route: '/', |
| 9 | + }) |
| 10 | + |
| 11 | + // The search container with ref="searchContainerRef" should be rendered |
| 12 | + // and contain an input element for the search functionality |
| 13 | + const html = wrapper.html() |
| 14 | + // The header renders a search form/input |
| 15 | + expect(html).toContain('search') |
| 16 | + }) |
| 17 | + |
| 18 | + it('nav links use invisible instead of hidden to prevent layout shift', async () => { |
| 19 | + const wrapper = await mountSuspended(AppHeader, { |
| 20 | + route: '/', |
| 21 | + }) |
| 22 | + |
| 23 | + const html = wrapper.html() |
| 24 | + // The nav list should use 'invisible pointer-events-none' (not 'hidden') |
| 25 | + // when the search is expanded, to prevent layout shifts |
| 26 | + // Verify the nav list element exists at all |
| 27 | + const navList = wrapper.find('nav ul, ul[class*="list-none"]') |
| 28 | + // When not on a search page and search is not expanded, |
| 29 | + // the nav list should be visible (not invisible) |
| 30 | + expect(navList.exists() || html.includes('list-none')).toBe(true) |
| 31 | + }) |
| 32 | + |
| 33 | + it('renders the header element', async () => { |
| 34 | + const wrapper = await mountSuspended(AppHeader, { |
| 35 | + route: '/', |
| 36 | + }) |
| 37 | + |
| 38 | + expect(wrapper.find('header').exists()).toBe(true) |
| 39 | + }) |
| 40 | + |
| 41 | + it('renders logo link when showLogo is true', async () => { |
| 42 | + const wrapper = await mountSuspended(AppHeader, { |
| 43 | + route: '/package/react', |
| 44 | + props: { showLogo: true }, |
| 45 | + }) |
| 46 | + |
| 47 | + // There should be a link to the home page (logo) |
| 48 | + const homeLink = wrapper.find('a[href="/"]') |
| 49 | + expect(homeLink.exists()).toBe(true) |
| 50 | + }) |
| 51 | +}) |
0 commit comments