rsnext/examples/with-jest-flow/__tests__/index.test.js
Sam Washburn 70aa2b5821 Merged with-jest and with-flow examples into a new with-jest-flow example. (#7224)
* Merged with-jest and with-flow examples into with-jest-flow.

* Removed semicolons linter was complaining about.
2019-05-08 14:41:34 +02:00

23 lines
544 B
JavaScript

/* eslint-env jest */
import { shallow } from 'enzyme'
import React from 'react'
import renderer from 'react-test-renderer'
import App from '../pages/index.js'
describe('With Enzyme', () => {
it('App shows "Hello World"', () => {
const app = shallow(<App />)
expect(app.find('div').text()).toEqual('Hello World')
})
})
describe('With Snapshot Testing', () => {
it('App shows "Hello World"', () => {
const component = renderer.create(<App />)
const tree = component.toJSON()
expect(tree).toMatchSnapshot()
})
})