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
17 lines • 586 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractStoppedContainer = void 0;
class AbstractStoppedContainer {
stoppedTestContainer;
constructor(stoppedTestContainer) {
this.stoppedTestContainer = stoppedTestContainer;
}
getId() {
return this.stoppedTestContainer.getId();
}
copyArchiveFromContainer(path) {
return this.stoppedTestContainer.copyArchiveFromContainer(path);
}
}
exports.AbstractStoppedContainer = AbstractStoppedContainer;
//# sourceMappingURL=abstract-stopped-container.js.map