test(e2e): address copilot review for fixture stability and CI python setup

This commit is contained in:
kl
2026-03-04 12:05:31 +08:00
parent 8f9dda5a8d
commit 7f6ad472c4
7 changed files with 39 additions and 15 deletions

View File

@@ -4,10 +4,12 @@
"version": "0.1.0",
"type": "module",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"gen:fixtures": "node ./scripts/generate-fixtures.mjs",
"gen:office": "python3 ./scripts/generate-office-fixtures.py"
"gen:office": "python3 ./scripts/generate-office-fixtures.py",
"gen:all": "npm run gen:fixtures && npm run gen:office",
"pretest": "npm run gen:all",
"test": "playwright test",
"test:headed": "playwright test --headed"
},
"devDependencies": {
"@playwright/test": "^1.55.0"