12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
import React from 'react'
|
|
import { shallow } from 'enzyme'
|
|
import IndexPage from '.'
|
|
|
|
import '../enzyme-conf.spec'
|
|
|
|
describe('<IndexPage />', function() {
|
|
it('renders', function() {
|
|
shallow(<IndexPage pageContext={{}} />)
|
|
})
|
|
})
|