UNPKG

dockest

Version:

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

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