Skip to content

Commit

Permalink
feat(config): log if no config file is specified
Browse files Browse the repository at this point in the history
Now that Karma tries to be a bit more clever and tries `karma.conf.js` or `karma.conf.coffee`, it's helpful to know that no config file was loaded.
  • Loading branch information
vojtajina committed Nov 16, 2013
1 parent c025cdc commit 27a0791
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/config.js
Expand Up @@ -323,6 +323,7 @@ var parseConfig = function(configFilePath, cliOptions) {
return process.exit(1);
}
} else {
log.debug('No config file specified.');
// if no config file path is passed, we define a dummy config module.
configModule = function() {};
}
Expand Down

0 comments on commit 27a0791

Please sign in to comment.