Keine Beschreibung

package.json 719B

12345678910111213141516171819202122
  1. {
  2. "name": "tests_end_to_end",
  3. "description": "End to end tests to avoid UI regressions",
  4. "scripts": {
  5. "start": "docker compose -f ../docker-compose.dev.yml up --detach && wait-on http://127.0.0.1:8000",
  6. "stop": "docker compose down",
  7. "e2e": "playwright test",
  8. "e2e:ui": "playwright test --ui",
  9. "e2e:report": "playwright show-report",
  10. "record": "playwright codegen --ignore-https-errors --load-storage playwright/.auth/administrator.json https://localhost",
  11. "test": "npm run start && npm run e2e && npm run stop"
  12. },
  13. "devDependencies": {
  14. "@playwright/test": "^1.47.0",
  15. "@types/node": "^22.5.4",
  16. "wait-on": "^7.2.0"
  17. },
  18. "dependencies": {
  19. "dotenv": "^16.4.5"
  20. }
  21. }