mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
fullyParallel: true,
|
|
webServer: {
|
|
command: 'deno task build && deno task preview',
|
|
port: 4173
|
|
},
|
|
testDir: 'e2e'
|
|
});
|