mirror of
https://github.com/unjs/unstorage.git
synced 2025-12-08 21:26:09 +00:00
14 lines
403 B
TypeScript
14 lines
403 B
TypeScript
import { describe } from "vitest";
|
|
import driver from "../../src/drivers/azure-key-vault.ts";
|
|
import { testDriver } from "./utils.ts";
|
|
|
|
describe.skip(
|
|
"drivers: azure-key-vault",
|
|
() => {
|
|
testDriver({
|
|
driver: driver({ vaultName: "testunstoragevault" }),
|
|
});
|
|
},
|
|
{ timeout: 80_000 }
|
|
); // 60s as the Azure Key Vault need to delete and purge the secret before it can be created again.
|