Files
sveltekit-og/examples/playwright.config.js
Shivam Meena 46c22edd60 Added Example
2022-10-31 00:29:51 +05:30

10 lines
184 B
JavaScript

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