1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-01 22:10:04 +09:00
namae/web/src/App.test.js

9 lines
229 B
JavaScript
Raw Normal View History

2019-07-30 23:27:28 +09:00
import React from 'react'
2019-08-03 00:35:23 +09:00
import { render } from '@testing-library/react'
2019-07-30 23:27:28 +09:00
import App from './App'
2019-07-27 19:18:54 +09:00
2019-08-03 00:35:23 +09:00
it('renders welcome message', () => {
const { getByText } = render(<App />)
2019-08-07 17:42:07 +09:00
expect(getByText('namæ')).toBeInTheDocument()
2019-07-30 23:27:28 +09:00
})