mirror of
https://github.com/uetchy/namae.git
synced 2025-07-02 14:20:03 +09:00
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import App from './App'
|
|
|
|
it('renders welcome message', () => {
|
|
const { getByText } = render(<App />)
|
|
expect(getByText('name new project')).toBeInTheDocument()
|
|
})
|