-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 843 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"private": true,
"type": "module",
"scripts": {
"test:e2e": "npx playwright test tests/e2e/api-health.spec.mjs tests/e2e/search.spec.mjs tests/e2e/card-details.spec.mjs tests/e2e/deck.spec.mjs",
"test:e2e:api": "npx playwright test tests/e2e/api-health.spec.mjs",
"test:e2e:search": "npx playwright test tests/e2e/search.spec.mjs",
"test:e2e:cards": "npx playwright test tests/e2e/card-details.spec.mjs",
"test:e2e:deck": "npx playwright test tests/e2e/deck.spec.mjs",
"test:e2e:visual": "npx playwright test tests/e2e/visual.spec.mjs",
"test:e2e:all": "npx playwright test",
"vlm-critique": "node scripts/vlm_critique.mjs",
"vlm-critique:clear": "node scripts/vlm_critique.mjs --clear"
},
"devDependencies": {
"@arclabs561/ai-visual-test": "^0.9.0",
"@playwright/test": "^1.58.2"
}
}