summaryrefslogtreecommitdiffstats
path: root/__tests__/jest/components/Branding.test.tsx
blob: 14266be33d94063f0e3a331beba8e068cd365495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Branding from '@components/Branding/Branding';
import { render, screen } from '@test-utils';

describe('Branding', () => {
  it('renders the title wrapped with an h1 element on homepage', () => {
    render(<Branding isHome={true} />);
    expect(
      screen.getByRole('heading', { level: 1, name: 'Armand Philippot' })
    ).toBeInTheDocument();
  });

  it('renders the title wrapped without an h1 element on other pages', () => {
    render(<Branding isHome={false} />);
    expect(
      screen.queryByRole('heading', { level: 1, name: 'Armand Philippot' })
    ).not.toBeInTheDocument();
  });

  it('renders the baseline', () => {
    render(<Branding isHome={false} />);
    // Currently, only French translation is returned.
    expect(screen.getByText('Intégrateur web')).toBeInTheDocument();
  });
});