Skip to content

Commit cf7e333

Browse files
committed
Resolve conflicts
1 parent 0505d5a commit cf7e333

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

extensions/ql-vscode/test/pure-tests/databases/db-config-store.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,12 @@ describe('db config store', async () => {
8888
it('should load an existing config without selected db', async () => {
8989
const testDataStoragePathWithout = path.join(__dirname, 'data', 'without-selected');
9090

91-
const configStore = new DbConfigStore(testDataStoragePathWithout, extensionPath);
91+
const app = createMockApp({
92+
extensionPath,
93+
workspaceStoragePath: testDataStoragePathWithout
94+
});
95+
96+
const configStore = new DbConfigStore(app);
9297
await configStore.initialize();
9398

9499
const config = configStore.getConfig().value;

0 commit comments

Comments
 (0)