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() const text = screen.getByText(/Video upload coming in Phase 2/i) expect(text).toBeInTheDocument() }) })