Skip to content

Commit

Permalink
docs: reference prettier in inline snapshots section (#11566)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss authored Feb 23, 2022
1 parent 5e5a9ba commit a1117f9
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

By default, Jest handles the writing of snapshots into your source code. However, if you're using [prettier](https://www.npmjs.com/package/prettier) in your project, Jest will detect this and delegate the work to prettier instead (including honoring your configuration).

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down
2 changes: 2 additions & 0 deletions website/versioned_docs/version-25.x/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

The writing of snapshots into your source code is performed via [prettier](https://www.npmjs.com/package/prettier). If you're not already using it in your project but want to use inline snapshots, you'll just need to install it under your `devDependencies`.

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down
2 changes: 2 additions & 0 deletions website/versioned_docs/version-26.x/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

The writing of snapshots into your source code is performed via [prettier](https://www.npmjs.com/package/prettier). If you're not already using it in your project but want to use inline snapshots, you'll just need to install it under your `devDependencies`.

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down
2 changes: 2 additions & 0 deletions website/versioned_docs/version-27.0/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

By default, Jest handles the writing of snapshots into your source code. However, if you're using [prettier](https://www.npmjs.com/package/prettier) in your project, Jest will detect this and delegate the work to prettier instead (including honoring your configuration).

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down
2 changes: 2 additions & 0 deletions website/versioned_docs/version-27.1/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

By default, Jest handles the writing of snapshots into your source code. However, if you're using [prettier](https://www.npmjs.com/package/prettier) in your project, Jest will detect this and delegate the work to prettier instead (including honoring your configuration).

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down
2 changes: 2 additions & 0 deletions website/versioned_docs/version-27.2/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

By default, Jest handles the writing of snapshots into your source code. However, if you're using [prettier](https://www.npmjs.com/package/prettier) in your project, Jest will detect this and delegate the work to prettier instead (including honoring your configuration).

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down
2 changes: 2 additions & 0 deletions website/versioned_docs/version-27.4/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

By default, Jest handles the writing of snapshots into your source code. However, if you're using [prettier](https://www.npmjs.com/package/prettier) in your project, Jest will detect this and delegate the work to prettier instead (including honoring your configuration).

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down
2 changes: 2 additions & 0 deletions website/versioned_docs/version-27.5/SnapshotTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ it('renders correctly', () => {

That's all there is to it! You can even update the snapshots with `--updateSnapshot` or using the `u` key in `--watch` mode.

By default, Jest handles the writing of snapshots into your source code. However, if you're using [prettier](https://www.npmjs.com/package/prettier) in your project, Jest will detect this and delegate the work to prettier instead (including honoring your configuration).

### Property Matchers

Often there are fields in the object you want to snapshot which are generated (like IDs and Dates). If you try to snapshot these objects, they will force the snapshot to fail on every run:
Expand Down

0 comments on commit a1117f9

Please sign in to comment.