Apply suggestion from @Rugvip

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2026-05-19 11:48:20 +02:00
committed by GitHub
parent c9468995fa
commit 2a03b0798c
@@ -117,7 +117,7 @@ async function startEmbeddedDbInternal(
const host = userConfig?.host ?? 'localhost';
const user = userConfig?.user ?? 'postgres';
const password = userConfig?.password ?? 'password';
const password = userConfig?.password ?? 'postgres';
const port = userConfig?.port ?? (await getPortPromise());
const tmpDir = await fs.mkdtemp(resolvePath(os.tmpdir(), TEMP_DIR_PREFIX));