UNPKG

dockest

Version:

Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.

13 lines 549 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createBridgeNetwork = void 0; const constants_1 = require("../../constants"); const execa_wrapper_1 = require("../execa-wrapper"); const createBridgeNetwork = async () => { const command = `docker network create \ --driver bridge \ ${constants_1.BRIDGE_NETWORK_NAME}`; (0, execa_wrapper_1.execaWrapper)(command); }; exports.createBridgeNetwork = createBridgeNetwork; //# sourceMappingURL=create-bridge-network.js.map