4206b93614
Copilot Setup Steps / copilot-setup-steps (push) Failing after 17s
- Created playwright.config.ts for test configuration - Added .last-run.json to store test run status - Implemented landing.test.ts with tests for navbar visibility and navigation - Removed unused server proxy configuration from vite.config.ts
18 lines
395 B
TypeScript
18 lines
395 B
TypeScript
import type { PlaywrightTestConfig } from "@playwright/test";
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: "./tests",
|
|
webServer: {
|
|
command: "npm run dev",
|
|
port: 5173,
|
|
timeout: 120000,
|
|
},
|
|
use: {
|
|
trace: "on-first-retry",
|
|
headless: false,
|
|
viewport: { width: 1280, height: 800 },
|
|
},
|
|
reporter: [["html", { output: "test-results" }]],
|
|
};
|
|
|
|
export default config; |