import React from 'react'; import { toMatchImageSnapshot } from 'jest-image-snapshot'; import screenshot from 'react-screenshot-renderer'; import Summary from '../summary'; import Theme from '@mocks/theme'; expect.extend({ toMatchImageSnapshot }); it('', async () => { expect( await screenshot( ) ).toMatchImageSnapshot(); }); it('', async () => { expect( await screenshot( ) ).toMatchImageSnapshot(); }); it('', async () => { expect( await screenshot( ) ).toMatchImageSnapshot(); }); it('', async () => { expect( await screenshot( ) ).toMatchImageSnapshot(); }); it('', async () => { expect( await screenshot( ) ).toMatchImageSnapshot(); }); it('', async () => { 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( await screenshot( ) ).toMatchImageSnapshot(); 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( await screenshot( ) ).toMatchImageSnapshot(); });