This commit is contained in:
Jill Regan
2026-06-17 11:05:03 -04:00
parent dbef05db1e
commit 94f19656f9
3 changed files with 16 additions and 5 deletions
+6 -1
View File
@@ -78,7 +78,12 @@ describe("loadSecretsFromSDK", () => {
});
it("masks the integration key and strips its base64 padding", async () => {
await loadSecretsFromSDK(workloadId, environmentId, "integration-key==", false);
await loadSecretsFromSDK(
workloadId,
environmentId,
"integration-key==",
false,
);
expect(core.setSecret).toHaveBeenCalledWith("integration-key");
});