Skip to content

Commit bc1e279

Browse files
authored
Fix pipeline (#7786)
1 parent 2a95324 commit bc1e279

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test/mocks/mockExtensionContext.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ export class MockExtensionContext implements ExtensionContext {
2121
store(key: string, value: string): Thenable<void> {
2222
throw new Error('Method not implemented.');
2323
}
24+
keys(): Thenable<string[]> {
25+
throw new Error('Method not implemented.');
26+
}
2427
delete(key: string): Thenable<void> {
2528
throw new Error('Method not implemented.');
2629
}

0 commit comments

Comments
 (0)