jest.config.js (387B)
1 /* Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 "use strict"; 5 6 /* global __dirname */ 7 8 const sharedJestConfig = require( 9 `${__dirname}/../../../shared/test-helpers/shared-jest.config` 10 ); 11 12 module.exports = { 13 ...sharedJestConfig, 14 setupFiles: ["<rootDir>setup.js"], 15 snapshotSerializers: ["enzyme-to-json/serializer"], 16 };