Files
clawfort/e2e/package.json
2026-02-13 16:57:45 -05:00

25 lines
673 B
JSON

{
"name": "clawfort-e2e-tests",
"version": "1.0.0",
"description": "Playwright-based UI/UX regression test suite for ClawFort",
"scripts": {
"test": "playwright test",
"test:smoke": "playwright test --grep @smoke",
"test:full": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"install:browsers": "playwright install",
"install:deps": "playwright install-deps",
"report": "playwright show-report",
"codegen": "playwright codegen"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}