Skip to content

Commit

Permalink
grepInvert defaults to false, not []
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 23, 2017
1 parent 7e94cfc commit 3c62917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/base.js
Expand Up @@ -26,7 +26,7 @@ function Base (options) {
this.readyToProcess = false
this.options = options
this.grep = ownOr(options, 'grep', [])
this.grepInvert = ownOr(options, 'grepInvert', [])
this.grepInvert = ownOr(options, 'grepInvert', false)
this.parent = ownOr(options, 'parent', null)
this.bail = ownOrEnv(options, 'bail', 'TAP_BAIL', true)
this.name = ownOr(options, 'name', '')
Expand Down

0 comments on commit 3c62917

Please sign in to comment.