You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { render } from 'enzyme';
|
|
|
|
import demoTest from '../../../tests/shared/demoTest';
|
|
|
|
import routerDemo from '../demo/router.md';
|
|
|
|
|
|
|
|
demoTest('breadcrumb', { skip: ['router.md'] });
|
|
|
|
|
|
|
|
const testMethod = typeof window !== 'undefined' ? test : test.skip;
|
|
|
|
testMethod('renders ./components/breadcrumb/demo/router.md correctly', () => {
|
|
|
|
const wrapper = render(routerDemo);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|