import { SideNavigationProps } from '@cloudscape-design/components/side-navigation';
import { render, screen } from '@testing-library/react';
import Navigation from '../../src/components/Navigation';
describe('Navigation', () => {
it('should render navigation with a default header', async () => {
render();
const sideNavigation = await screen.findByTestId('sideNavigation');
expect(sideNavigation).toBeTruthy();
// https://github.com/testing-library/jest-dom#custom-matchers
});
it('should render a custom header', async () => {
render();
const sideNavigation = await screen.findByTestId('sideNavigation');
expect(sideNavigation).toBeTruthy();
expect(sideNavigation).toHaveTextContent('Documentation');
});
});