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

6 lines (5 loc) 234 B
import { AuthConfig, ContainerRuntimeConfig } from "./types"; export interface RegistryAuthLocator { getName(): string; getAuthConfig(registry: string, dockerConfig: ContainerRuntimeConfig): Promise<AuthConfig | undefined>; }