2
0

package.json 541 B

12345678910111213141516171819
  1. {
  2. "name": "dashboard-test",
  3. "version": "1.0.0",
  4. "private": true,
  5. "description": "dashboard-v6 的 Playwright 端到端测试",
  6. "type": "module",
  7. "scripts": {
  8. "test": "playwright test",
  9. "test:ui": "playwright test --ui",
  10. "test:headed": "playwright test --headed",
  11. "test:channel": "playwright test channel",
  12. "report": "playwright show-report",
  13. "codegen": "playwright codegen http://127.0.0.1:4000/pcd-v2026"
  14. },
  15. "devDependencies": {
  16. "@playwright/test": "^1.62.1",
  17. "@types/node": "^24.10.1"
  18. }
  19. }