importNightmarefrom'nightmare';describe('Homepage',()=>{it('it should have logo text',async()=>{constpage=Nightmare().goto('http://localhost:8000');consttext=awaitpage.wait('h1').evaluate(()=>document.body.innerHTML).end();expect(text).toContain('<h1>Ant Design Pro</h1>');});});