mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
25 lines
527 B
JavaScript
25 lines
527 B
JavaScript
|
|
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
|
|
import React from 'react';
|
|
import renderer from 'react-test-renderer';
|
|
import 'jest-styled-components';
|
|
|
|
import { InstanceList } from '@containers/instances/list.js';
|
|
import { Router, Store, instances } from '../../mocks';
|
|
|
|
xit('renders <InstanceList /> without throwing', () => {
|
|
const tree = renderer
|
|
.create(
|
|
<Store>
|
|
<Router>
|
|
<InstanceList instances={instances} />
|
|
</Router>
|
|
</Store>
|
|
)
|
|
.toJSON();
|
|
expect(tree).toMatchSnapshot();
|
|
});
|