constBASE_URL=`http://localhost:${process.env.PORT||8000}`;describe('Homepage',()=>{beforeAll(async()=>{jest.setTimeout(1000000);});it('it should have logo text',async()=>{awaitpage.goto(BASE_URL);awaitpage.waitForSelector('h1',{timeout:5000,});consttext=awaitpage.evaluate(()=>document.getElementsByTagName('h1')[0].innerText);expect(text).toContain('Ant Design Pro');});});