summaryrefslogtreecommitdiffstats
path: root/apps/frontpage/playwright.config.ts
blob: 05dea1f62ea0ab4bc521465db86d845ab9daea19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type {PlaywrightTestConfig} from "@playwright/test";

const config: PlaywrightTestConfig = {
    webServer: {
        command: "pnpm run build && pnpm run preview",
        port: 3000
    }
};

export default config;