proto/frontend/playwright.config.ts

11 lines
200 B
TypeScript
Raw Permalink Normal View History

2022-11-23 01:22:15 -08:00
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'yarn build && yarn preview',
port: 4173
}
};
export default config;