mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
10 lines
273 B
JavaScript
10 lines
273 B
JavaScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import App from './App'
|
|
|
|
test('renders learn react link', () => {
|
|
const { getByText } = render(<App />)
|
|
const linkElement = getByText(/learn react/i)
|
|
expect(linkElement).toBeInTheDocument()
|
|
})
|