fix: remove logger from runContainer

Signed-off-by: ElaineDeMattosSilvaB <elaine.de-mattos-silva-bezerra@deutschebahn.com>
This commit is contained in:
ElaineDeMattosSilvaB
2024-10-15 13:32:55 +02:00
parent 16e339ea26
commit 9655c15815
4 changed files with 0 additions and 6 deletions
@@ -189,7 +189,6 @@ describe('fetch:cookiecutter', () => {
},
workingDir: '/input',
envVars: { HOME: '/tmp' },
logger: expect.any(Logger),
}),
);
});
@@ -116,7 +116,6 @@ export class CookiecutterRunner {
// Set the home directory inside the container as something that applications can
// write to, otherwise they will just fail trying to write to /
envVars: { HOME: '/tmp' },
logger,
});
}
@@ -78,7 +78,6 @@ describe('Rails Templater', () => {
[path.join(mockDir.path, 'intermediate')]: '/output',
},
workingDir: '/input',
logger: logger,
});
});
@@ -144,7 +143,6 @@ describe('Rails Templater', () => {
[path.join(mockDir.path, 'intermediate')]: '/output',
},
workingDir: '/input',
logger,
});
});
@@ -186,7 +184,6 @@ describe('Rails Templater', () => {
[path.join(mockDir.path, 'intermediate')]: '/output',
},
workingDir: '/input',
logger,
});
});
});
@@ -96,7 +96,6 @@ export class RailsNewRunner {
// Set the home directory inside the container as something that applications can
// write to, otherwise they will just fail trying to write to /
envVars: { HOME: '/tmp' },
logger,
});
}