We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf5b67 commit 985edbdCopy full SHA for 985edbd
test/drivers/azure-key-vault.test.ts
@@ -2,12 +2,8 @@ import { describe } from "vitest";
2
import driver from "../../src/drivers/azure-key-vault";
3
import { testDriver } from "./utils";
4
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.
+describe.skip("drivers: azure-key-vault", { timeout: 80_000 }, () => {
+ testDriver({
+ driver: driver({ vaultName: "testunstoragevault" }),
+ });
+}); // 60s as the Azure Key Vault need to delete and purge the secret before it can be created again.
0 commit comments