/** * @jest-environment jsdom */ import React from 'react'; import renderer from 'react-test-renderer'; import 'jest-styled-components'; import ServiceStatus from '@components/services/status.js'; import { service } from '../../mocks'; xit('renders without throwing', () => { const tree = renderer .create() .toJSON(); expect(tree).toMatchSnapshot(); });