-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 3.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "pytest-html-plus-vscode",
"displayName": "Pytest HTML Plus",
"version": "0.2.2",
"publisher": "reporterplus",
"description": "View pytest-html-plus test reports directly in the VS Code sidebar with failure navigation, error previews, auto-detection, and multi-report support.",
"categories": [
"Testing"
],
"license": "MIT",
"keywords": [
"pytest",
"pytest-html-plus",
"python testing",
"test runner",
"test reports",
"test explorer",
"pytest report",
"automation testing",
"qa"
],
"icon": "resources/icon.png",
"repository": {
"type": "git",
"homepage": "https://github.com/reporterplus/pytest-html-plus-vscode",
"bugs": {
"url": "https://github.com/reporterplus/pytest-html-plus-vscode/issues"
}
},
"engines": {
"vscode": "^1.80.0"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "reporterplus.configureReportPath",
"title": "Configure Report Path",
"category": "Pytest HTML Plus",
"icon": "$(gear)"
},
{
"command": "reporterplus.refresh",
"title": "Refresh Test Results",
"category": "Pytest HTML Plus",
"icon": "$(refresh)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "reporterplus",
"title": "Pytest HTML Plus",
"icon": "resources/icon.svg"
}
]
},
"views": {
"reporterplus": [
{
"id": "reporterplus.sidebar",
"name": "Test Results",
"type": "webview"
}
]
},
"menus": {
"view/title": [
{
"command": "reporterplus.refresh",
"when": "view == reporterplus.sidebar",
"group": "navigation@1"
},
{
"command": "reporterplus.configureReportPath",
"when": "view == reporterplus.sidebar",
"group": "navigation@2"
}
],
"commandPalette": [
{
"command": "reporterplus.configureReportPath",
"when": "workspaceFolderCount > 0"
},
{
"command": "reporterplus.refresh",
"when": "workspaceFolderCount > 0"
}
]
},
"configuration": {
"title": "Pytest HTML Plus",
"properties": {
"reporterplus.reportJsonPaths": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Paths to pytest-html-plus report JSON files. Leave empty for automatic detection."
},
"reporterplus.autoRefresh": {
"type": "boolean",
"default": true,
"description": "Automatically refresh when the report file changes."
},
"reporterplus.showErrorSnippets": {
"type": "boolean",
"default": true,
"description": "Show truncated error messages for failed tests."
},
"reporterplus.maxErrorLength": {
"type": "number",
"default": 150,
"minimum": 50,
"maximum": 500,
"description": "Maximum length of error snippets shown in the sidebar."
},
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
}
}
}
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -watch -p .",
"lint": "tsc --noEmit",
"package": "vsce package",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/vscode": "^1.80.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}