Skip to content

Commit

Permalink
Jest Preset: Ignore is-plain-obj transformation (#43179)
Browse files Browse the repository at this point in the history
* Jest Preset: Ignore is-plain-obj transformation

* Add changelogs
  • Loading branch information
tyxla authored and gziolo committed Aug 12, 2022
1 parent 08358f5 commit cab63ea
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions packages/jest-preset-default/CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 8.5.1 (2022-08-12)

### Bug Fix

- Jest Preset: Ignore `is-plain-obj` transformation ([#43179](https://github.com/WordPress/gutenberg/pull/43179)).

## 8.0.0 (2022-01-27)

### Breaking Changes
Expand Down
1 change: 1 addition & 0 deletions packages/jest-preset-default/jest-preset.js
Expand Up @@ -29,4 +29,5 @@ module.exports = {
transform: {
'\\.[jt]sx?$': require.resolve( 'babel-jest' ),
},
transformIgnorePatterns: [ 'node_modules/(?!(is-plain-obj))' ],
};
6 changes: 6 additions & 0 deletions packages/scripts/CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 23.7.1 (2022-08-12)

### Bug Fix

- Jest Preset: Ignore `is-plain-obj` transformation ([#43179](https://github.com/WordPress/gutenberg/pull/43179)).

## 23.6.0 (2022-07-27)

### Bug Fix
Expand Down
1 change: 0 additions & 1 deletion test/unit/jest.config.js
Expand Up @@ -36,7 +36,6 @@ module.exports = {
transform: {
'^.+\\.[jt]sx?$': '<rootDir>/test/unit/scripts/babel-transformer.js',
},
transformIgnorePatterns: [ 'node_modules/(?!(is-plain-obj))' ],
snapshotSerializers: [
'enzyme-to-json/serializer',
'@emotion/jest/serializer',
Expand Down

0 comments on commit cab63ea

Please sign in to comment.