Newer
Older
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()
})
})