Files
oki-podcast-reader/playwright.config.ts
T

12 lines
227 B
TypeScript
Raw Normal View History

2023-02-21 22:09:10 +00:00
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
2023-02-23 13:28:04 +00:00
port: 4173,
2023-02-21 22:09:10 +00:00
},
2023-02-23 13:28:04 +00:00
testDir: 'tests',
2023-02-21 22:09:10 +00:00
};
export default config;