UNPKG

remotevars

Version:

Carga variables de entorno desde múltiples providers remotos

9 lines (7 loc) 290 B
import { fetchConfig as fetchLocal } from "../src/providers/local.js"; describe("Providers", () => { it("local provider carga JSON correctamente", async () => { const vars = await fetchLocal({ filePath: "./tests/test-config.json" }); expect(vars.TEST_VAR).toBe("123"); }); });