import React from 'react'; import renderer from 'react-test-renderer'; import 'jest-styled-components'; import Summary from '../summary'; import Theme from '@mocks/theme'; it('renders without throwing', () => { expect( renderer .create( ) .toJSON() ).toMatchSnapshot(); }); it('renders without throwing', () => { expect( renderer .create( ) .toJSON() ).toMatchSnapshot(); }); it('renders without throwing', () => { expect( renderer .create( ) .toJSON() ).toMatchSnapshot(); expect( renderer .create( ) .toJSON() ).toMatchSnapshot(); expect( renderer .create( ) .toJSON() ).toMatchSnapshot(); }); it('renders without throwing', () => { const instance1 = { id: '2252839a-e698-ceec-afac-9549ad0c6624', // eslint-disable-next-line camelcase compute_node: '70bb1cee-dba3-11e3-a799-002590e4f2b0', image: { id: '19aa3328-0025-11e7-a19a-c39077bfd4cf', name: 'Alpine 3' }, // eslint-disable-next-line camelcase primary_ip: '72.2.119.146', ips: { public: ['72.2.119.146', '72.2.119.146'], private: ['10.112.5.63', '10.112.5.63'] }, package: { name: 'g4-highcpu-128M' }, brand: 'KVM', state: 'RUNNING' }; expect( renderer .create( ) .toJSON() ).toMatchSnapshot(); const instance2 = { id: '2252839a-e698-ceec-afac-9549ad0c6624', // eslint-disable-next-line camelcase compute_node: '70bb1cee-dba3-11e3-a799-002590e4f2b0', image: { id: '19aa3328-0025-11e7-a19a-c39077bfd4cf' }, // eslint-disable-next-line camelcase primary_ip: '72.2.119.146', ips: { public: ['72.2.119.146', '72.2.119.146'], private: ['10.112.5.63', '10.112.5.63'] }, package: { name: 'g4-highcpu-128M' }, brand: 'LX', state: 'RUNNING' }; expect( renderer .create( ) .toJSON() ).toMatchSnapshot(); });