You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/keyvault.test.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ describe("key vault reference", function () {
40
40
});
41
41
42
42
it("require key vault options to resolve reference",async()=>{
43
-
returnexpect(load(createMockedConnectionString())).eventually.rejectedWith("Configure keyVaultOptions to resolve Key Vault Reference(s).");
43
+
returnexpect(load(createMockedConnectionString())).eventually.rejectedWith("Failed to process the key vault reference. The keyVaultOptions is not configured.");
44
44
});
45
45
46
46
it("should resolve key vault reference with credential",async()=>{
@@ -96,7 +96,7 @@ describe("key vault reference", function () {
96
96
]
97
97
}
98
98
});
99
-
returnexpect(loadKeyVaultPromise).eventually.rejectedWith("No key vault credential or secret resolver callback configured, and no matching secret client could be found.");
99
+
returnexpect(loadKeyVaultPromise).eventually.rejectedWith("Failed to process the key vault reference. No key vault credential or secret resolver callback configured, and no matching secret client could be found.");
100
100
});
101
101
102
102
it("should fallback to use default credential when corresponding secret client not provided",async()=>{
0 commit comments