addition of new dashboard
This commit is contained in:
14
frontend/playwright.config.js
Normal file
14
frontend/playwright.config.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineConfig } from "@playwright/test";
|
||||
|
||||
// npm run test:e2e (needs `npx playwright install chromium` once).
|
||||
export default defineConfig({
|
||||
testDir: "./tests/e2e",
|
||||
timeout: 30_000,
|
||||
use: { baseURL: "http://localhost:4321" },
|
||||
webServer: {
|
||||
command: "npm run build && npm run preview -- --port 4321",
|
||||
url: "http://localhost:4321",
|
||||
reuseExistingServer: true,
|
||||
timeout: 120_000,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user