Skip to content

Commit

Permalink
fix configuration loader
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodelgado111 committed Aug 16, 2016
1 parent 795f526 commit 19d044d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/context/conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ if (IS_COVERAGE_ACTIVE) {
}
}

export const COVERAGE_EXPORT_FOLDER = configuration.output;
export const exclude = configuration.exclude;
export const include = configuration.include;
export const COVERAGE_EXPORT_FOLDER = configuration && configuration.output;
export const exclude = configuration && configuration.exclude;
export const include = configuration && configuration.include;

0 comments on commit 19d044d

Please sign in to comment.