Skip to content

Commit 94823a6

Browse files
committed
Disable filewatcher for tests
1 parent 010e85c commit 94823a6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ describe("db config store", () => {
617617

618618
it("should set the selected item", async () => {
619619
// Initial set up
620-
const configStore = new DbConfigStore(app);
620+
const configStore = new DbConfigStore(app, false);
621621
await configStore.initialize();
622622

623623
// Set selected
@@ -770,7 +770,7 @@ describe("db config store", () => {
770770
): Promise<DbConfigStore> {
771771
await writeJSON(configPath, dbConfig);
772772

773-
const configStore = new DbConfigStore(app);
773+
const configStore = new DbConfigStore(app, false);
774774
await configStore.initialize();
775775

776776
return configStore;

0 commit comments

Comments
 (0)