Skip to content

Commit

Permalink
Fix prettier error in jest-runner (#4510)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrottimark authored and cpojer committed Sep 19, 2017
1 parent ecbdeda commit 0c108a6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/jest-runner/src/run_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,7 @@ export default function runTest(

let testConsole;
if (globalConfig.silent) {
testConsole = new NullConsole(
consoleOut,
process.stderr,
consoleFormatter,
);
testConsole = new NullConsole(consoleOut, process.stderr, consoleFormatter);
} else {
if (globalConfig.verbose) {
testConsole = new Console(consoleOut, process.stderr, consoleFormatter);
Expand Down

0 comments on commit 0c108a6

Please sign in to comment.