cli: fix stdout not being logged in e2e test cmd failures
This commit is contained in:
@@ -60,6 +60,9 @@ async function runPlain(cmd, options) {
|
||||
});
|
||||
return stdout.trim();
|
||||
} catch (error) {
|
||||
if (error.stdout) {
|
||||
process.stdout.write(error.stdout);
|
||||
}
|
||||
if (error.stderr) {
|
||||
process.stderr.write(error.stderr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user