import * as React from 'react' import { render } from '@testing-library/react' import '@testing-library/jest-dom' import { CNavLink } from '../index' test('loads and displays CNavLink component', async () => { const { container } = render(Test) expect(container).toMatchSnapshot() }) test('CNavLink customize', async () => { const { container } = render( Test ) expect(container).toMatchSnapshot() expect(container.firstChild).toHaveClass('nav-link') expect(container.firstChild).toHaveClass('bazinga') }) test('CNavLink witch "to" prop', async () => { const { container } = render(Test) expect(container).toMatchSnapshot() })