1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-23 11:43:51 +00:00

Run Prettier

This commit is contained in:
Thomas Rittson
2021-12-20 14:20:58 +10:00
parent 54b4154c02
commit 1f11b7cc3b
11 changed files with 65 additions and 58 deletions

View File

@@ -507,7 +507,9 @@ describe("Cipher Service", () => {
const result = await authService.logInSso(ssoCode, ssoCodeVerifier, ssoRedirectUrl, ssoOrgId);
commonSuccessAssertions();
keyConnectorService.received(1).convertNewSsoUserToKeyConnector(kdf, kdfIterations, keyConnectorUrl, ssoOrgId);
keyConnectorService
.received(1)
.convertNewSsoUserToKeyConnector(kdf, kdfIterations, keyConnectorUrl, ssoOrgId);
});
// API
@@ -534,11 +536,10 @@ describe("Cipher Service", () => {
})
);
// Sets local environment:
stateService.received(1).setApiKeyClientId(apiClientId);
stateService.received(1).setApiKeyClientSecret(apiClientSecret);
commonSuccessAssertions();
stateService.received(1).setApiKeyClientId(apiClientId);
stateService.received(1).setApiKeyClientSecret(apiClientSecret);
commonSuccessAssertions();
cryptoService.received(1).setEncKey(encKey);
cryptoService.received(1).setEncPrivateKey(privateKey);