import * as React from 'react'; import { render } from '@testing-library/react'; import Header, { HeaderTitle, HeaderSection, HeaderLogo, } from '@digigov/ui/app/Header'; import logo from '../../govgr/GovGRLogo/govgr-logo.svg'; it('renders the header with logo, title and subtitle', () => { expect( render(
A title A subtitle
).baseElement ).toMatchSnapshot(); }); it('renders the HeaderTitle component', () => { expect( render(A title).baseElement ).toMatchSnapshot(); }); it('renders the HeaderTitle component with custom href', () => { expect( render(A title).baseElement ).toMatchSnapshot(); });