Skip to content

Commit 985edbd

Browse files
committed
chore: update tests
1 parent eaf5b67 commit 985edbd

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

test/drivers/azure-key-vault.test.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@ import { describe } from "vitest";
22
import driver from "../../src/drivers/azure-key-vault";
33
import { testDriver } from "./utils";
44

5-
describe.skip(
6-
"drivers: azure-key-vault",
7-
() => {
8-
testDriver({
9-
driver: driver({ vaultName: "testunstoragevault" }),
10-
});
11-
},
12-
{ timeout: 80_000 }
13-
); // 60s as the Azure Key Vault need to delete and purge the secret before it can be created again.
5+
describe.skip("drivers: azure-key-vault", { timeout: 80_000 }, () => {
6+
testDriver({
7+
driver: driver({ vaultName: "testunstoragevault" }),
8+
});
9+
}); // 60s as the Azure Key Vault need to delete and purge the secret before it can be created again.

0 commit comments

Comments
 (0)