We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7330b0 commit 4e5c193Copy full SHA for 4e5c193
test/stubs.ts
@@ -595,8 +595,8 @@ export class ProjectConfigServiceStub implements IProjectConfigService {
595
return false;
596
}
597
598
- getValue(key: string): any {
599
- return _.get(this.readConfig(), key);
+ getValue(key: string, defaultValue?: any): any {
+ return _.get(this.readConfig(), key, defaultValue);
600
601
602
setValue(key: string, value: SupportedConfigValues): any {
0 commit comments