Files
sveltekit-og/playwright.config.ts
Shivam Meena eab564d9b0 Added Og
2022-10-20 15:21:16 +05:30

11 lines
206 B
TypeScript

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