mirror of
https://github.com/yldio/copilot.git
synced 2024-11-16 00:00:06 +02:00
16 lines
418 B
JavaScript
16 lines
418 B
JavaScript
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
|
|
import React from 'react';
|
|
import renderer from 'react-test-renderer';
|
|
import 'jest-styled-components';
|
|
|
|
import InstanceCard from '@components/instances/list-item.js';
|
|
import { instance } from '../../mocks';
|
|
|
|
it('renders <InstanceCard /> without throwing', () => {
|
|
const tree = renderer.create(<InstanceCard instance={instance} />).toJSON();
|
|
expect(tree).toMatchSnapshot();
|
|
});
|