/ playwright.buildSmoke.config.ts
playwright.buildSmoke.config.ts
1 import type { PlaywrightTestConfig } from "@playwright/test"; 2 3 import base from "./playwright.config.js"; 4 5 const config: PlaywrightTestConfig = { 6 ...base, 7 testDir: "./tests/build", 8 use: { 9 ...base.use, 10 baseURL: "http://localhost:4173", 11 }, 12 retries: 0, 13 globalSetup: undefined, 14 webServer: { 15 command: "npm run serve", 16 port: 4173, 17 }, 18 }; 19 20 export default config;