mirror of
https://github.com/unjs/unstorage.git
synced 2025-12-08 21:26:09 +00:00
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
import { describe } from "vitest";
|
|
import driver from "../../src/drivers/azure-app-configuration.ts";
|
|
import { testDriver } from "./utils.ts";
|
|
|
|
describe.skip("drivers: azure-app-configuration", () => {
|
|
testDriver({
|
|
driver: driver({
|
|
appConfigName: "unstoragetest",
|
|
label: "dev",
|
|
prefix: "app01",
|
|
}),
|
|
});
|
|
});
|