File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
packages/jest-cli/src/reporters Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments