mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-27 07:10:30 -04:00
Connection Store Refactor (#4632)
* various clean ups * formatting * remove linting * formatting * IConfigurationService is even better * messing with connection config tests * update tests * formatting * foramtting * remove unused code * add more tests * working through tests * formatting * more factoring of connection store and increase code coverage * formatting * fix tests
This commit is contained in:
@@ -36,15 +36,15 @@ export class CredentialsTestProvider implements azdata.CredentialProvider {
|
||||
export class CredentialsTestService implements ICredentialsService {
|
||||
_serviceBrand: any;
|
||||
|
||||
saveCredential(credentialId: string, password: string): Thenable<boolean> {
|
||||
saveCredential(credentialId: string, password: string): Promise<boolean> {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
readCredential(credentialId: string): Thenable<azdata.Credential> {
|
||||
readCredential(credentialId: string): Promise<azdata.Credential> {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
deleteCredential(credentialId: string): Thenable<boolean> {
|
||||
deleteCredential(credentialId: string): Promise<boolean> {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
@@ -52,4 +52,4 @@ export class CredentialsTestService implements ICredentialsService {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user