You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`name`| The name of the test suite (file). Can contains variables related to `pattern`. [Detail](https://github.com/matepek/vscode-catch2-test-adapter/blob/master/documents/configuration/test.advancedExecutables.md)|
50
50
|`pattern`| A relative (to workspace directory) or an absolute path or [_glob pattern_](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options). ⚠️**Avoid backslash!**: NO `\\`; (required) [Detail](https://github.com/matepek/vscode-catch2-test-adapter/blob/master/documents/configuration/test.advancedExecutables.md)|
51
+
|`exclude`| Setting path like `files.watcherExclude` to use for test lookup. |
51
52
|`description`| A less prominent text after the `name`. Can contains variables related to `pattern`. [Detail](https://github.com/matepek/vscode-catch2-test-adapter/blob/master/documents/configuration/test.advancedExecutables.md)|
52
53
|`cwd`| The current working directory for the test executable. If it isn't provided and `test.workingDirectory` does then that will be used. Can contains variables related to `pattern`. [Detail](https://github.com/matepek/vscode-catch2-test-adapter/blob/master/documents/configuration/test.advancedExecutables.md)|
53
54
|`env`| Environment variables for the test executable. Can contains variables related to `pattern` and variables related to the process's environment variables (Ex.: `${os_env:PATH}`). [Detail](https://github.com/matepek/vscode-catch2-test-adapter/blob/master/documents/configuration/test.advancedExecutables.md)|
Copy file name to clipboardexpand all lines: package.json
+21
Original file line number
Diff line number
Diff line change
@@ -156,6 +156,27 @@
156
156
}
157
157
]
158
158
},
159
+
"exclude": {
160
+
"markdownDescription": "Setting path like `files.watcherExclude` to use for test lookup.",
161
+
"default": null,
162
+
"anyOf": [
163
+
{
164
+
"type": "string",
165
+
"enum": [
166
+
"files.watcherExclude",
167
+
"files.exclude",
168
+
"search.exclude"
169
+
]
170
+
},
171
+
{
172
+
"type": "string",
173
+
"minLength": 1
174
+
},
175
+
{
176
+
"type": "null"
177
+
}
178
+
]
179
+
},
159
180
"name": {
160
181
"markdownDescription": "The name of the test suite (file). Can contains variables related to `pattern`. [Detail](https://github.com/matepek/vscode-catch2-test-adapter/blob/master/documents/configuration/test.advancedExecutables.md)",
0 commit comments