describe('Testing Setup', () => { it('should work correctly', () => { expect(true).toBe(true); }); it('should have testing library matchers', () => { const element = document.createElement('div'); element.textContent = 'Hello World'; expect(element).toBeInTheDocument(); }); });