Jack Maclennan Portfolio
    Preparing search index...

    Variable aboutMeTestConst

    aboutMeTest: TestType<
        PlaywrightTestArgs & PlaywrightTestOptions & { forEachTest: void },
        PlaywrightWorkerArgs & PlaywrightWorkerOptions,
    > = ...

    Test environment for About Me page.

    
    

    Sets up testing environment for About Me page tests by navigating to the page before each test.

    export const aboutMeTest = test.extend<{ forEachTest: void }>({
    forEachTest: [
    async ({ page }, use) => {
    await page.goto('http://localhost:3000/about-me');
    await page.waitForURL('http://localhost:3000/about-me');
    await use();
    },
    { auto: true }
    ]
    });