🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

testcontainers

Package Overview
Dependencies
Maintainers
1
Versions
269
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

testcontainers - npm Package Compare versions

Comparing version

to
10.25.0

2

build/docker-compose-environment/docker-compose-environment.d.ts

@@ -16,2 +16,3 @@ import { Uuid } from "../common";

private pullPolicy;
private defaultWaitStrategy;
private waitStrategy;

@@ -26,2 +27,3 @@ private startupTimeout?;

withPullPolicy(pullPolicy: ImagePullPolicy): this;
withDefaultWaitStrategy(waitStrategy: WaitStrategy): this;
withWaitStrategy(containerName: string, waitStrategy: WaitStrategy): this;

@@ -28,0 +30,0 @@ withStartupTimeout(startupTimeout: number): this;

@@ -24,2 +24,3 @@ "use strict";

pullPolicy = pull_policy_1.PullPolicy.defaultPolicy();
defaultWaitStrategy = wait_1.Wait.forListeningPorts();
waitStrategy = {};

@@ -57,2 +58,6 @@ startupTimeout;

}
withDefaultWaitStrategy(waitStrategy) {
this.defaultWaitStrategy = waitStrategy;
return this;
}
withWaitStrategy(containerName, waitStrategy) {

@@ -115,3 +120,3 @@ this.waitStrategy[containerName] = waitStrategy;

? this.waitStrategy[containerName]
: wait_1.Wait.forListeningPorts();
: this.defaultWaitStrategy;
if (this.startupTimeout !== undefined) {

@@ -118,0 +123,0 @@ waitStrategy.withStartupTimeout(this.startupTimeout);

2

build/version.d.ts

@@ -1,1 +0,1 @@

export declare const LIB_VERSION = "10.24.2";
export declare const LIB_VERSION = "10.25.0";
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LIB_VERSION = void 0;
exports.LIB_VERSION = "10.24.2";
exports.LIB_VERSION = "10.25.0";
//# sourceMappingURL=version.js.map
{
"name": "testcontainers",
"version": "10.24.2",
"version": "10.25.0",
"author": "Cristian Greco",

@@ -5,0 +5,0 @@ "license": "MIT",

Sorry, the diff of this file is not supported yet