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.
13 lines
471 B
13 lines
471 B
8 years ago
|
import { render } from 'enzyme';
|
||
|
import { renderToJson } from 'enzyme-to-json';
|
||
|
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(renderToJson(wrapper)).toMatchSnapshot();
|
||
|
});
|