proto/frontend/playwright.config.ts

11 lines
200 B
TypeScript

import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'yarn build && yarn preview',
port: 4173
}
};
export default config;