UNPKG

testcontainers

Version:

Testcontainers is a NodeJS library that supports tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container

16 lines 671 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseComposeContainerName = void 0; function parseComposeContainerName(projectName, containerName) { if (containerName.includes(projectName)) { return containerName.substring(`/${projectName}_`.length); } else if (containerName.startsWith("/")) { return containerName.substring(1); } else { throw new Error(`Unable to resolve container name for container name: "${containerName}", project name: "${projectName}"`); } } exports.parseComposeContainerName = parseComposeContainerName; //# sourceMappingURL=parse-compose-container-name.js.map