aboutsummaryrefslogtreecommitdiff
path: root/playwright.config.js
blob: 8809fca5956647a70e8736f004fbc475e8ce4cc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
  webServer: {
    command: "npm run build && npm run preview",
    port: 3000,
  },
};

export default config;