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
thrownewOperationError("Failed to process the key vault reference. No key vault credential or secret resolver callback configured, and no matching secret client could be found.");
47
+
// When code reaches here, it means the key vault secret reference is not resolved.
48
+
49
+
thrownewRangeError("Failed to process the key vault reference. No key vault credential or secret resolver callback is configured.");
Copy file name to clipboardExpand all lines: test/keyvault.test.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ describe("key vault reference", function () {
96
96
]
97
97
}
98
98
});
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.");
99
+
returnexpect(loadKeyVaultPromise).eventually.rejectedWith("Failed to process the key vault reference. No key vault credential or secret resolver callback is configured.");
100
100
});
101
101
102
102
it("should fallback to use default credential when corresponding secret client not provided",async()=>{
0 commit comments