blob: c97fd4692b5dc8b6223b7e6d1f4891cc69feb76e (
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;
|