Skip to content

Commit

Permalink
Consistently refer to babel-config module as babelConfigHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
novemberborn committed Feb 14, 2017
1 parent 9f5b953 commit d86d6fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const MiniReporter = require('./reporters/mini');
const TapReporter = require('./reporters/tap');
const Logger = require('./logger');
const Watcher = require('./watcher');
const babelConfig = require('./babel-config');
const babelConfigHelper = require('./babel-config');

// Bluebird specific
Promise.longStackTraces();
Expand Down Expand Up @@ -115,7 +115,7 @@ exports.run = () => {
powerAssert: cli.flags.powerAssert !== false,
explicitTitles: cli.flags.watch,
match: arrify(cli.flags.match),
babelConfig: babelConfig.validate(conf.babel),
babelConfig: babelConfigHelper.validate(conf.babel),
resolveTestsFrom: cli.input.length === 0 ? projectDir : process.cwd(),
projectDir,
timeout: cli.flags.timeout,
Expand Down

0 comments on commit d86d6fd

Please sign in to comment.