Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ describe("WorkloadIdentityCredential - Identity Binding Configuration", function

// Should be a new object reference since cache was invalidated
assert.equal(tlsSettings3.ca, getTestCertificateContent());
await fs.unlink(tempCaFile);
await fs.rmdir(tempDir);
await fs.rm(tempDir, { recursive: true, force: true });
});

it("should handle empty CA file during rotation", async function () {
Expand Down Expand Up @@ -144,8 +143,7 @@ describe("WorkloadIdentityCredential - Identity Binding Configuration", function
});
}, /CA certificate file is empty/);

await fs.unlink(tempCaFile);
await fs.rmdir(tempDir);
await fs.rm(tempDir, { recursive: true, force: true });
});
});

Expand Down
Loading