import { describe, expect, it } from 'vitest';
import MagazineNotFoundBody from './MagazineNotFoundBody.astro';
import { assertNotFoundHomeLink, assertNoMainElement, renderBodyComponent } from '../../test/body-component-render';

describe('MagazineNotFoundBody', () => {
  it('renders h1 and home link', async () => {
    const html = await renderBodyComponent(MagazineNotFoundBody);
    assertNotFoundHomeLink(html);
    assertNoMainElement(html);
    expect(html).toContain('Page not found');
    expect(html).toContain('Return to homepage →');
  });
});
