Files
PLG-MuDiCS/control/frontend/playwright.config.ts
T

10 lines
182 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'deno task build && deno task preview',
port: 4173
},
testDir: 'e2e'
});