poku
Version:
🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.
10 lines (9 loc) • 606 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.docker = void 0;
const container_js_1 = require("../../services/container.js");
/** A minimal API to assist tests that require containers or tests that run inside containers using a **Dockerfile**. */
const dockerfile = (configs) => new container_js_1.DockerContainer(configs);
/** A minimal API to assist tests that require containers or tests that run inside containers using a **docker-compose.yml**. */
const compose = (configs) => new container_js_1.DockerCompose(configs);
exports.docker = { dockerfile, compose };