Skip to content
Snippets Groups Projects
GCUView.spec.tsx 302 B
Newer Older
  • Learn to ignore specific revisions
  • import React from 'react'
    import { shallow } from 'enzyme'
    import GCUView from 'components/GCU/GCUView'
    
    describe('GCUView component', () => {
      it('should be rendered correctly', () => {
        const component = shallow(<GCUView />).getElement()
        expect(component).toMatchSnapshot()
      })
    })