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

describe('EditorialNotFoundBody', () => {
  it('renders h1 and home link', async () => {
    const html = await renderBodyComponent(EditorialNotFoundBody);
    assertNotFoundHomeLink(html);
    assertNoMainElement(html);
    expect(html).toContain('Page not found');
    expect(html).toContain('← Home');
  });
});
