@@ -50,9 +50,9 @@ suite('TextResourceConfigurationService - Update', () => {
5050 test ( 'updateValue writes into given memory target without overrides' , async ( ) => {
5151 language = 'a' ;
5252 configurationValue = {
53- defaultValue : '1' ,
54- userLocalValue : '2' ,
55- workspaceFolderValue : '2'
53+ default : '1' ,
54+ userLocal : '2' ,
55+ workspaceFolder : '2'
5656 } ;
5757 const resource = URI . file ( 'someFile' ) ;
5858
@@ -63,9 +63,9 @@ suite('TextResourceConfigurationService - Update', () => {
6363 test ( 'updateValue writes into given workspace target without overrides' , async ( ) => {
6464 language = 'a' ;
6565 configurationValue = {
66- defaultValue : '1' ,
67- userLocalValue : '2' ,
68- workspaceFolderValue : '2'
66+ default : '1' ,
67+ userLocal : '2' ,
68+ workspaceFolder : '2'
6969 } ;
7070 const resource = URI . file ( 'someFile' ) ;
7171
@@ -76,9 +76,9 @@ suite('TextResourceConfigurationService - Update', () => {
7676 test ( 'updateValue writes into given user target without overrides' , async ( ) => {
7777 language = 'a' ;
7878 configurationValue = {
79- defaultValue : '1' ,
80- userLocalValue : '2' ,
81- workspaceFolderValue : '2'
79+ default : '1' ,
80+ userLocal : '2' ,
81+ workspaceFolder : '2'
8282 } ;
8383 const resource = URI . file ( 'someFile' ) ;
8484
@@ -89,9 +89,9 @@ suite('TextResourceConfigurationService - Update', () => {
8989 test ( 'updateValue writes into given workspace folder target with overrides' , async ( ) => {
9090 language = 'a' ;
9191 configurationValue = {
92- defaultValue : '1' ,
93- userLocalValue : '2' ,
94- workspaceFolderValue : '2' ,
92+ default : '1' ,
93+ userLocal : '2' ,
94+ workspaceFolder : '2' ,
9595 workspaceFolderOverridden : '1'
9696 } ;
9797 const resource = URI . file ( 'someFile' ) ;
@@ -103,9 +103,9 @@ suite('TextResourceConfigurationService - Update', () => {
103103 test ( 'updateValue writes into derived workspace folder target without overrides' , async ( ) => {
104104 language = 'a' ;
105105 configurationValue = {
106- defaultValue : '1' ,
107- userLocalValue : '2' ,
108- workspaceFolderValue : '2' ,
106+ default : '1' ,
107+ userLocal : '2' ,
108+ workspaceFolder : '2' ,
109109 } ;
110110 const resource = URI . file ( 'someFile' ) ;
111111
@@ -116,10 +116,10 @@ suite('TextResourceConfigurationService - Update', () => {
116116 test ( 'updateValue writes into derived workspace folder target with overrides' , async ( ) => {
117117 language = 'a' ;
118118 configurationValue = {
119- defaultValue : '1' ,
120- userLocalValue : '2' ,
121- workspaceValue : '2' ,
122- workspaceFolderValue : '2' ,
119+ default : '1' ,
120+ userLocal : '2' ,
121+ workspace : '2' ,
122+ workspaceFolder : '2' ,
123123 workspaceOverridden : '3' ,
124124 workspaceFolderOverridden : '1'
125125 } ;
@@ -132,9 +132,9 @@ suite('TextResourceConfigurationService - Update', () => {
132132 test ( 'updateValue writes into derived workspace target without overrides' , async ( ) => {
133133 language = 'a' ;
134134 configurationValue = {
135- defaultValue : '1' ,
136- userLocalValue : '2' ,
137- workspaceValue : '2' ,
135+ default : '1' ,
136+ userLocal : '2' ,
137+ workspace : '2' ,
138138 } ;
139139 const resource = URI . file ( 'someFile' ) ;
140140
@@ -145,9 +145,9 @@ suite('TextResourceConfigurationService - Update', () => {
145145 test ( 'updateValue writes into derived workspace target with overrides' , async ( ) => {
146146 language = 'a' ;
147147 configurationValue = {
148- defaultValue : '1' ,
149- userLocalValue : '2' ,
150- workspaceValue : '2' ,
148+ default : '1' ,
149+ userLocal : '2' ,
150+ workspace : '2' ,
151151 workspaceOverridden : 3
152152 } ;
153153 const resource = URI . file ( 'someFile' ) ;
@@ -159,9 +159,9 @@ suite('TextResourceConfigurationService - Update', () => {
159159 test ( 'updateValue writes into derived user remote target without overrides' , async ( ) => {
160160 language = 'a' ;
161161 configurationValue = {
162- defaultValue : '1' ,
163- userLocalValue : '2' ,
164- userRemoteValue : '3' ,
162+ default : '1' ,
163+ userLocal : '2' ,
164+ userRemote : '3' ,
165165 } ;
166166 const resource = URI . file ( 'someFile' ) ;
167167
@@ -172,9 +172,9 @@ suite('TextResourceConfigurationService - Update', () => {
172172 test ( 'updateValue writes into derived user remote target with overrides' , async ( ) => {
173173 language = 'a' ;
174174 configurationValue = {
175- defaultValue : '1' ,
176- userLocalValue : '2' ,
177- userRemoteValue : '3' ,
175+ default : '1' ,
176+ userLocal : '2' ,
177+ userRemote : '3' ,
178178 userRemoteOverridden : '3' ,
179179 } ;
180180 const resource = URI . file ( 'someFile' ) ;
@@ -185,9 +185,9 @@ suite('TextResourceConfigurationService - Update', () => {
185185 test ( 'updateValue writes into derived user remote target without overrides' , async ( ) => {
186186 language = 'a' ;
187187 configurationValue = {
188- defaultValue : '1' ,
189- userLocalValue : '2' ,
190- userRemoteValue : '3' ,
188+ default : '1' ,
189+ userLocal : '2' ,
190+ userRemote : '3' ,
191191 } ;
192192 const resource = URI . file ( 'someFile' ) ;
193193
@@ -198,9 +198,9 @@ suite('TextResourceConfigurationService - Update', () => {
198198 test ( 'updateValue writes into derived user remote target with overrides' , async ( ) => {
199199 language = 'a' ;
200200 configurationValue = {
201- defaultValue : '1' ,
202- userLocalValue : '2' ,
203- userRemoteValue : '3' ,
201+ default : '1' ,
202+ userLocal : '2' ,
203+ userRemote : '3' ,
204204 userRemoteOverridden : '3' ,
205205 } ;
206206 const resource = URI . file ( 'someFile' ) ;
@@ -212,8 +212,8 @@ suite('TextResourceConfigurationService - Update', () => {
212212 test ( 'updateValue writes into derived user target without overrides' , async ( ) => {
213213 language = 'a' ;
214214 configurationValue = {
215- defaultValue : '1' ,
216- userLocalValue : '2' ,
215+ default : '1' ,
216+ userLocal : '2' ,
217217 } ;
218218 const resource = URI . file ( 'someFile' ) ;
219219
@@ -224,8 +224,8 @@ suite('TextResourceConfigurationService - Update', () => {
224224 test ( 'updateValue writes into derived user target with overrides' , async ( ) => {
225225 language = 'a' ;
226226 configurationValue = {
227- defaultValue : '1' ,
228- userLocalValue : '2' ,
227+ default : '1' ,
228+ userLocal : '2' ,
229229 userLocalOverridden : '3'
230230 } ;
231231 const resource = URI . file ( 'someFile' ) ;
0 commit comments