Skip to content

Commit 9f98e28

Browse files
committed
Update Changelog.
1 parent 940c2c1 commit 9f98e28

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## master
22

3+
## jest 14.0.1
4+
5+
* `babel-jest` can now be used to compose a transformer.
6+
* Updated snapshot instructions to run `jest -u` or `npm test -- -u`.
7+
* Fixed `config` cli option to enable JSON objects as configuration.
8+
* Updated printing of preset path in the CLI.
9+
310
## jest 14.0.0
411

512
* Official release of snapshot tests.

packages/jest-cli/src/reporters/SummaryReporter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class SummareReporter extends BaseReporter {
8383
const event = process.env.npm_lifecycle_event;
8484
const updateCommand =
8585
(!event ? 're-' : '') + 'run with `' +
86-
(event ? 'npm ' + event + ' -- ' : '') + '-u' + '`';
86+
(event ? 'npm ' + event + ' -- ' : '') + '-u`';
8787

8888
this.log('\n' + SNAPSHOT_SUMMARY('Snapshot Summary'));
8989
if (snapshots.added) {

0 commit comments

Comments
 (0)