-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
187 lines (187 loc) · 5.04 KB
/
package.json
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "vscode-vstest-framework",
"displayName": "VSTest Tools Framework",
"description": "A Visual Studio Code Extension that implements the VSTest frameworks",
"version": "0.0.3",
"publisher": "gfrancischini",
"icon": "resources/icon/testingicon.png",
"repository": {
"type": "git",
"url": "https://github.com/gfrancischini/vscode-vstest-framework"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"menus": {
"view/title": [
{
"command": "vstest.execution.runSelected",
"when": "view == vstest.explorer.vsTestTree",
"group": "navigation"
},
{
"command": "vstest.explorer.groupBy",
"when": "view == vstest.explorer.vsTestTree",
"group": "navigation"
},
{
"command": "vstest.execution.runAll",
"when": "view == vstest.explorer.vsTestTree",
"group": "hidden"
},
{
"command": "vstest.execution.debugSelected",
"when": "view == vstest.explorer.vsTestTree",
"group": "hidden"
}
],
"view/item/context": [
{
"command": "vstest.execution.runSelected"
},
{
"command": "vstest.execution.debugSelected"
},
{
"command": "vstest.explorer.open"
},
{
"command": "vstest.explorer.refresh"
},
{
"command": "vstest.explorer.showResult"
}
]
},
"configuration": {
"type": "object",
"title": "Node Test Runner Configuration Properties.",
"properties": {
"vstest.dotnet": {
"description": ".Net Test Configuration",
"type": "object",
"properties": {
"testFiles": {
"type": "object",
"properties": [
{
"output": {
"description": "Output path where the build files are. Relative to workspace path.",
"type": "string",
"default": "bin/debug"
},
"framework": {
"description": "Target framework to discovery and run tests.",
"type": "string",
"default": "netcoreapp2.0"
},
"outputFileName": {
"description": "Name of the test output file. (eg. UnitTest.dll).",
"type": "string",
"default": "UnitTest.dll"
}
}
]
}
}
},
"vstest.enable": {
"description": "Enable/Disable VSTest Explorer",
"type": "boolean",
"default": true
},
"vstest.autoInitialize": {
"description": "If true the test explorer will auto initialize when vscode opens",
"type": "boolean",
"default": true
}
}
},
"commands": [
{
"command": "vstest.execution.runSelected",
"title": "Run Selected Test",
"icon": "resources/light/play_button.svg"
},
{
"command": "vstest.execution.runAll",
"title": "Run All Tests",
"icon": "resources/light/play_all_button.svg"
},
{
"command": "vstest.execution.debugSelected",
"title": "Debug Selected Test"
},
{
"command": "vstest.execution.debugAll",
"title": "Debug All Tests"
},
{
"command": "vstest.execution.stop",
"title": "Stop Tests"
},
{
"command": "vstest.explorer.open",
"title": "Open the selected Test"
},
{
"command": "vstest.explorer.showResult",
"title": "Show selected test Result"
},
{
"command": "vstest.explorer.restart",
"title": "Restart Test Explorer"
},
{
"command": "vstest.explorer.refresh",
"title": "Refresh Test Explorer"
},
{
"command": "vstest.explorer.groupBy",
"title": "Group Test By",
"icon": "resources/light/group.svg"
},
{
"command": "vstest.explorer.initialize",
"title": "Initialize Test Explorer"
}
],
"views": {
"explorer": [
{
"id": "vstest.explorer.vsTestTree",
"name": "Test Explorer",
"when": "config.vstest.enable"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.4.2",
"vscode": "^1.1.0"
},
"dependencies": {
"@types/fs-extra": "^3.0.1",
"@types/glob": "^5.0.30",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.73",
"amd-loader": "0.0.8",
"freeport": "^1.0.5",
"glob": "^7.1.2",
"typescript-collections": "^1.2.3"
}
}