-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.57 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "playwright-mcp-testing",
"version": "1.0.0",
"description": "Playwright testing project with MCP (Model Context Protocol) integration for automated web testing",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report",
"test:codegen": "playwright codegen",
"test:trace": "playwright test --trace on",
"test:ai": "playwright test --headed --slowMo=1000",
"install-browsers": "playwright install",
"install-deps": "playwright install-deps",
"testability:complete": "node generate-html-report.js complete",
"testability:detailed": "node generate-html-report.js detailed",
"testability:detailed-single": "node generate-html-report.js detailed-single",
"testability:all-tests": "node generate-html-report.js all-tests",
"testability:failures": "node generate-html-report.js failures",
"testability:failures-demo": "node generate-html-report.js failures-demo",
"testability:comparison": "node generate-html-report.js comparison",
"testability:observability": "node generate-html-report.js observability",
"testability:ai": "node generate-html-report.js ai",
"report:html": "node generate-html-report.js"
},
"keywords": [
"playwright",
"testing",
"automation",
"e2e",
"mcp",
"web-testing"
],
"author": "Demo User",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.49.0"
},
"dependencies": {}
}