Skip to content

Commit

Permalink
Fixed a bug with --matchAll not taking effect
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Moultrie committed Mar 7, 2014
1 parent 45c85b4 commit 415611c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/jasmine-node/cli.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/cli.coffee
Expand Up @@ -184,7 +184,7 @@ for specFolder in options.specFolders

try
matcher = ""
if options.matchall
if options.matchAll
matcher = "#{options.match}(#{options.extensions})$"
else
matcher = "#{options.match}spec\\.(#{options.extensions})$"
Expand Down

0 comments on commit 415611c

Please sign in to comment.