Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Commit

Permalink
fix(test): Fix issue with debug statement and missing config file
Browse files Browse the repository at this point in the history
  • Loading branch information
adambrgmn committed Jan 3, 2018
1 parent afc1a8f commit 96328cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { jest: jestConfig } = require('./src/config');
const jestConfig = require('./src/config/test/jest.config');

module.exports = Object.assign(jestConfig, {
coverageThreshold: null,
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function fransScripts(
const cli = sade(name);

cli.version(version).describe(description);
cli.option('--debug, -d', 'Run scripts in debug mode');
cli.option('--debug', 'Run scripts in debug mode');

attachCommands(cli, actions);

Expand Down

0 comments on commit 96328cb

Please sign in to comment.