@@ -44,7 +44,7 @@ describe("db config store", () => {
4444 "workspace-databases.json" ,
4545 ) ;
4646
47- const configStore = new DbConfigStore ( app ) ;
47+ const configStore = new DbConfigStore ( app , false ) ;
4848 await configStore . initialize ( ) ;
4949
5050 expect ( await pathExists ( configPath ) ) . toBe ( true ) ;
@@ -65,7 +65,7 @@ describe("db config store", () => {
6565 extensionPath,
6666 workspaceStoragePath : testDataStoragePath ,
6767 } ) ;
68- const configStore = new DbConfigStore ( app ) ;
68+ const configStore = new DbConfigStore ( app , false ) ;
6969 await configStore . initialize ( ) ;
7070
7171 const config = configStore . getConfig ( ) . value ;
@@ -120,7 +120,7 @@ describe("db config store", () => {
120120 workspaceStoragePath : testDataStoragePathWithout ,
121121 } ) ;
122122
123- const configStore = new DbConfigStore ( app ) ;
123+ const configStore = new DbConfigStore ( app , false ) ;
124124 await configStore . initialize ( ) ;
125125
126126 const config = configStore . getConfig ( ) . value ;
@@ -134,7 +134,7 @@ describe("db config store", () => {
134134 extensionPath,
135135 workspaceStoragePath : testDataStoragePath ,
136136 } ) ;
137- const configStore = new DbConfigStore ( app ) ;
137+ const configStore = new DbConfigStore ( app , false ) ;
138138 await configStore . initialize ( ) ;
139139
140140 const config = configStore . getConfig ( ) . value ;
@@ -155,7 +155,7 @@ describe("db config store", () => {
155155 extensionPath,
156156 workspaceStoragePath : testDataStoragePathInvalid ,
157157 } ) ;
158- const configStore = new DbConfigStore ( app ) ;
158+ const configStore = new DbConfigStore ( app , false ) ;
159159 await configStore . initialize ( ) ;
160160
161161 expect ( app . executeCommand ) . toBeCalledWith (
@@ -171,7 +171,7 @@ describe("db config store", () => {
171171 extensionPath,
172172 workspaceStoragePath : testDataStoragePath ,
173173 } ) ;
174- const configStore = new DbConfigStore ( app ) ;
174+ const configStore = new DbConfigStore ( app , false ) ;
175175 await configStore . initialize ( ) ;
176176
177177 expect ( app . executeCommand ) . toBeCalledWith (
@@ -215,7 +215,7 @@ describe("db config store", () => {
215215
216216 await writeJSON ( configPath , dbConfig ) ;
217217
218- const configStore = new DbConfigStore ( app ) ;
218+ const configStore = new DbConfigStore ( app , false ) ;
219219 await configStore . initialize ( ) ;
220220
221221 // Rename
@@ -262,7 +262,7 @@ describe("db config store", () => {
262262
263263 await writeJSON ( configPath , dbConfig ) ;
264264
265- const configStore = new DbConfigStore ( app ) ;
265+ const configStore = new DbConfigStore ( app , false ) ;
266266 await configStore . initialize ( ) ;
267267
268268 // Rename
@@ -309,7 +309,7 @@ describe("db config store", () => {
309309
310310 await writeJSON ( configPath , dbConfig ) ;
311311
312- const configStore = new DbConfigStore ( app ) ;
312+ const configStore = new DbConfigStore ( app , false ) ;
313313 await configStore . initialize ( ) ;
314314
315315 // Rename
@@ -353,7 +353,7 @@ describe("db config store", () => {
353353
354354 await writeJSON ( configPath , dbConfig ) ;
355355
356- const configStore = new DbConfigStore ( app ) ;
356+ const configStore = new DbConfigStore ( app , false ) ;
357357 await configStore . initialize ( ) ;
358358
359359 // Rename
@@ -393,7 +393,7 @@ describe("db config store", () => {
393393
394394 await writeJSON ( configPath , dbConfig ) ;
395395
396- const configStore = new DbConfigStore ( app ) ;
396+ const configStore = new DbConfigStore ( app , false ) ;
397397 await configStore . initialize ( ) ;
398398
399399 // Remove
@@ -432,7 +432,7 @@ describe("db config store", () => {
432432
433433 await writeJSON ( configPath , dbConfig ) ;
434434
435- const configStore = new DbConfigStore ( app ) ;
435+ const configStore = new DbConfigStore ( app , false ) ;
436436 await configStore . initialize ( ) ;
437437
438438 // Remove
@@ -471,7 +471,7 @@ describe("db config store", () => {
471471
472472 await writeJSON ( configPath , dbConfig ) ;
473473
474- const configStore = new DbConfigStore ( app ) ;
474+ const configStore = new DbConfigStore ( app , false ) ;
475475 await configStore . initialize ( ) ;
476476
477477 // Remove
0 commit comments