dockest
Version:
Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.
20 lines • 889 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MINIMUM_JEST_VERSION = exports.DEFAULT_HOST_NAME = exports.DOCKEST_HOST_ADDRESS = exports.BRIDGE_NETWORK_NAME = exports.DOCKEST_ATTACH_TO_PROCESS = exports.GENERATED_COMPOSE_FILE_PATH = exports.LOG_LEVEL = void 0;
exports.LOG_LEVEL = {
NOTHING: 0,
ERROR: 1,
WARN: 2,
INFO: 3,
DEBUG: 4,
};
exports.GENERATED_COMPOSE_FILE_PATH = `${process.cwd()}/docker-compose.dockest-generated.yml`;
exports.DOCKEST_ATTACH_TO_PROCESS = 'DOCKEST_ATTACH_TO_PROCESS';
exports.BRIDGE_NETWORK_NAME = `dockest_bridge_network`;
exports.DOCKEST_HOST_ADDRESS = 'host.dockest-runner.internal';
exports.DEFAULT_HOST_NAME = 'host.docker.internal';
/**
* Released 2017-05-06: https://github.com/facebook/jest/releases/tag/v20.0.0
*/
exports.MINIMUM_JEST_VERSION = '20.0.0';
//# sourceMappingURL=constants.js.map