package.json 579 B

12345678910111213141516171819
  1. {
  2. "name": "cfc-tests",
  3. "version": "1.0.0",
  4. "private": true,
  5. "scripts": {
  6. "test": "jest",
  7. "test:integration": "jest --testMatch '**/integration/**/*.spec.js'",
  8. "test:e2e": "playwright test",
  9. "test:e2e:headed": "playwright test --headed",
  10. "test:e2e:debug": "playwright test --debug",
  11. "test:flow": "playwright test tests/e2e/*-flow.spec.js",
  12. "test:all": "npm run test:e2e && npm run test:integration"
  13. },
  14. "devDependencies": {
  15. "@playwright/test": "^1.40.0",
  16. "jest": "^29.7.0"
  17. },
  18. "description": "浠艾福(CFC) 分层测试套件"
  19. }