Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update CHANGELOG
  • Loading branch information
rickhanlonii committed Sep 8, 2018
commit d6e902e905753494c254e6ce52a5ae6450153ae3
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Features

- `[jest-ci]` Add `changedSince` to allowed watch mode configs ([#6955](https://github.com/facebook/jest/pull/6955))
- `[babel-jest]` Add support for `babel.config.js` added in Babel 7.0.0 ([#6911](https://github.com/facebook/jest/pull/6911))

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-cli/src/lib/update_global_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default (globalConfig: GlobalConfig, options: Options): GlobalConfig => {
}

if (options.changedSince !== undefined) {
newConfig.changedSince = options.changedSince || false;
newConfig.changedSince = options.changedSince;
}

if (options.collectCoverage !== undefined) {
Expand Down