diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 000000000..319b3b57f --- /dev/null +++ b/jest.config.js @@ -0,0 +1,8 @@ +const defaultConfig = require( '@wordpress/scripts/config/jest-unit.config' ); + +const config = { + ...defaultConfig, + transformIgnorePatterns: [ 'node_modules/(?!(is-plain-obj))' ], +}; + +module.exports = config;