Better logging for e2e tests + allow buffering of logs

This commit is contained in:
Reinier Criel 2025-12-11 09:06:50 -08:00 committed by Sander Declerck
parent 9fe6dccfca
commit fce81d8210
No known key found for this signature in database

View file

@ -33,9 +33,9 @@ export class DockerTestContainer {
].join(" "); ].join(" ");
execSync( execSync(
`docker build -t ${imageName} -f ${dockerFile} ${contextPath} ${buildArgs}`, `docker build --progress=plain -t ${imageName} -f ${dockerFile} ${contextPath} ${buildArgs}`,
{ {
stdio: "ignore", stdio: "inherit",
} }
); );
} catch (error) { } catch (error) {