Skip to content

Commit 5c38db4

Browse files
properties-reader breaking changes
1 parent 77516a4 commit 5c38db4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/testcontainers/src/container-runtime/strategies/utils

packages/testcontainers/src/container-runtime/strategies/utils/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async function loadFromFile() {
3737
if (existsSync(file)) {
3838
log.debug(`Loading ".testcontainers.properties" file...`);
3939
const string = await readFile(file, { encoding: "utf-8" });
40-
const properties = propertiesReader("").read(string);
40+
const properties = propertiesReader({ sourceFile: "" }).read(string);
4141

4242
const tcHost = properties.get("tc.host") as string;
4343
if (tcHost !== null) {

0 commit comments

Comments
 (0)