-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "E2E-framework",
"private": true,
"version": "1.0.0",
"description": "Playwright E2E for SharePoint / authenticated pages + Cursor Playwright MCP. Single spec: npm test -- tests/forum-hardware-requests-add-topic.spec.ts",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui --ui-host=localhost --ui-port=8123",
"test:setup": "node scripts/refresh-auth.mjs",
"test:report": "playwright test && npx playwright show-report",
"test:report:only": "npx playwright show-report",
"test:trace": "playwright show-trace",
"postinstall": "echo Optional: run npx playwright install msedge (or chromium)"
},
"devDependencies": {
"@playwright/test": "^1.51.0",
"@types/node": "^25.6.0",
"dotenv": "^16.4.7",
"typescript": "^5.7.3"
}
}