Const
Test environment for Home page.
Copy
Sets up testing environment for Home page tests by navigating to the page before each test.
export const homeTest = test.extend<{ forEachTest: void }>({ forEachTest: [ async ({ page }, use) => { await page.goto('http://localhost:3000'); await page.waitForURL('http://localhost:3000'); await use(); }, { auto: true } ]}); Copy
export const homeTest = test.extend<{ forEachTest: void }>({ forEachTest: [ async ({ page }, use) => { await page.goto('http://localhost:3000'); await page.waitForURL('http://localhost:3000'); await use(); }, { auto: true } ]});
Test environment for Home page.
Example