This commit is contained in:
Evan Carroll 2026-01-21 18:19:43 -06:00
parent be60cf9a3d
commit e4abdb183f
9 changed files with 541 additions and 0 deletions

17
e2e/package.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "chattyness-e2e",
"version": "1.0.0",
"description": "End-to-end tests for Chattyness",
"scripts": {
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug",
"report": "npx playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}