Files
jdescopingtool/TestScripts/playwright/package.json
T
Joseph Doherty ee044d03e0 feat: add health check endpoint, file upload result handling, and Playwright E2E tests
- Add /health endpoint with anonymous access for monitoring
- Add FileUploadResult<T> model and PostMultipartForFileResultAsync for proper upload response handling
- Add ApiResult.Success() factory method for interface types
- Refactor Login.razor for cleaner code
- Add comprehensive Playwright E2E test suite with fixtures and helpers
2026-01-30 07:12:20 -05:00

18 lines
509 B
JSON

{
"name": "jde-scoping-e2e-tests",
"version": "1.0.0",
"description": "End-to-end tests for JDE Scoping Tool using Playwright",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:ui": "playwright test --ui",
"create-test-data": "node scripts/create-test-excel.js"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"exceljs": "^4.4.0",
"typescript": "^5.9.3"
}
}