sk-node / app /playwright.config.ts
Ron Au
build(app): Add SvelteKit
6c12e37
raw
history blame contribute delete
206 Bytes
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
}
};
export default config;