File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " testingmanager" ,
3
3
"displayName" : " InterSystems Testing Manager" ,
4
- "version" : " 0.0.3 -SNAPSHOT" ,
4
+ "version" : " 0.1.0 -SNAPSHOT" ,
5
5
"preview" : true ,
6
6
"publisher" : " intersystems-community" ,
7
7
"description" : " Manage testing on InterSystems servers." ,
73
73
"configuration" : {
74
74
"title" : " InterSystems Testing Manager" ,
75
75
"properties" : {
76
- "intersystems.testingManager.relativeTestRoot" : {
77
- "markdownDescription" : " Relative path to where client-side test classes are stored." ,
76
+ "intersystems.testingManager.client. relativeTestRoot" : {
77
+ "markdownDescription" : " Relative path to where client-side test classes are stored. Default is `internal/testing/unit_tests`. " ,
78
78
"type" : " string" ,
79
79
"scope" : " resource"
80
80
}
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export async function setupLocalTestsController() {
88
88
89
89
90
90
export function relativeTestRoot ( folder : vscode . WorkspaceFolder ) : string {
91
- return vscode . workspace . getConfiguration ( 'intersystems.testingManager' , folder . uri ) . get < string > ( 'relativeTestRoot' ) || 'internal/testing/unit_tests' ;
91
+ return vscode . workspace . getConfiguration ( 'intersystems.testingManager.client ' , folder . uri ) . get < string > ( 'relativeTestRoot' ) || 'internal/testing/unit_tests' ;
92
92
}
93
93
94
94
/* Replace root items with one item for each file-type workspace root for which a named server can be identified
You can’t perform that action at this time.
0 commit comments