Skip to content

Commit

Permalink
Merge pull request #586 from geek/output
Browse files Browse the repository at this point in the history
Default output to stdout
  • Loading branch information
cjihrig committed May 18, 2016
2 parents 7cb3fda + 29865fd commit bd878cf
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion lib/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ internals.defaults = {
globals: null,
leaks: true,
timeout: 2000,
output: false, // Stream.Writable or string (filename)
output: process.stdout, // Stream.Writable or string (filename)
parallel: false,
progress: 1,
reporter: 'console',
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ describe('Lab', () => {

it('schedules automatic execution', { parallel: false }, (done) => {

const script = Lab.script();
const script = Lab.script({ output: false });
script.experiment('test', () => {

script.test('works', (testDone) => {
Expand Down
Loading

0 comments on commit bd878cf

Please sign in to comment.