feat(tests): enhance push/pull test with Docker integration and improved environment variable handling

style(test): format comment
This commit is contained in:
vorotamoroz
2026-05-07 11:22:56 +01:00
parent cc3d30dbcf
commit 279fc8876e
2 changed files with 38 additions and 24 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
* KEY='single quoted'
* KEY="double quoted"
* # comment lines are ignored
*/
*/
export async function loadEnvFile(filePath: string): Promise<Record<string, string>> {
const text = await Deno.readTextFile(filePath);
const result: Record<string, string> = {};