12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import React from 'react'
|
|
import { render, screen } from '@testing-library/react'
|
|
import App from '../../App'
|
|
|
|
describe('Layout', () => {
|
|
test('renders VideoPlaceholder with Phase 2 text', () => {
|
|
render(<App />)
|
|
const text = screen.getByText(/Video upload coming in Phase 2/i)
|
|
expect(text).toBeInTheDocument()
|
|
})
|
|
})
|