Regression Test & GiteaAction workflow
CI / regression (push) Failing after 2m36s

This commit is contained in:
Zakaria
2026-06-06 12:43:16 -04:00
parent 7dbefd49dc
commit 2db12722c6
6 changed files with 852 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "fancy-wordle",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "http-server . -a 0.0.0.0 -p ${PORT:-8080} -c-1",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:report": "playwright show-report"
},
"dependencies": {
"http-server": "^14.1.1"
},
"devDependencies": {
"@playwright/test": "^1.60.0"
}
}