Skip to content

Commit

Permalink
Merge pull request #4 from sullenor/simple-output
Browse files Browse the repository at this point in the history
simple output
  • Loading branch information
sullenor committed Apr 16, 2016
2 parents 5aa1063 + 1b518ca commit 4d6f979
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ const inherits = require('util').inherits;
const EventEmitter = require('events').EventEmitter;
const EOL = require('os').EOL;

const o = typeof window === 'undefined'
? msg => process.stdout.write(`${msg}${EOL}`)
: msg => console.log(msg);
const o = msg => console.log(msg);

/**
* http://webdriver.io/guide/reporters/customreporter.html
Expand Down

0 comments on commit 4d6f979

Please sign in to comment.