Skip to content

Commit

Permalink
removed boxen from concurrent test runs (#3616)
Browse files Browse the repository at this point in the history
  • Loading branch information
qa-danny authored Feb 28, 2023
1 parent 1c13ccc commit 6e6e715
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/runner/concurrency/child-process.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const child_process = require('child_process');
const EventEmitter = require('events');
const boxen = require('boxen');
const {Logger, isObject, symbols} = require('../../utils');
const ProcessListener = require('../../runner/process-listener.js');

Expand Down Expand Up @@ -171,7 +170,7 @@ class ChildProcess extends EventEmitter {

let status = code > 0 ? symbols.fail : symbols.ok;
// eslint-disable-next-line no-console
console.log(boxen(this.env_output.join('\n'), {title: `────────────────── ${status} ${this.env_label}`, padding: 1, borderColor: 'cyan'}));
console.log(`\n${status} ${this.env_label}`, this.env_output.join('\n'), '\n');

code = code || this.processListener.exitCode;
resolve(code);
Expand Down

0 comments on commit 6e6e715

Please sign in to comment.