Add JFrog (OAuth) integration module (#97)

This commit is contained in:
Muhammad Atif Ali
2023-11-15 00:12:57 +03:00
committed by GitHub
parent 4e7f1e0ffd
commit 73ef0dc7d0
9 changed files with 286 additions and 31 deletions

17
jfrog-oauth/main.test.ts Normal file
View File

@@ -0,0 +1,17 @@
import { serve } from "bun";
import { describe } from "bun:test";
import {
createJSONResponse,
runTerraformInit,
testRequiredVariables,
} from "../test";
describe("jfrog-oauth", async () => {
await runTerraformInit(import.meta.dir);
testRequiredVariables(import.meta.dir, {
agent_id: "some-agent-id",
jfrog_url: "http://localhost:8081",
package_managers: "{}",
});
});