import * as React from 'react'
import { render } from '@testing-library/react'
import '@testing-library/jest-dom'
import { CBreadcrumb, CBreadcrumbItem } from '../index'
test('loads and displays CBreadcrumb component', async () => {
const { container } = render()
expect(container).toMatchSnapshot()
})
test('CBreadcrumb customize', async () => {
const { container } = render(
Test A
Test B
Test C
)
const ol = container.querySelector('ol')
expect(container).toMatchSnapshot()
expect(ol).toHaveClass('bazinga')
})