mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 12:20:38 +01:00
The changes to the test code relate to changes in JSDOM that come with Jest 25: * Several JSDOM workarounds are no longer needed. * Several tests made assertions to match incorrect JSDOM behavior (e.g. setAttribute calls) that JSDOM has now patched to match browsers. * https://codesandbox.io/s/resets-value-of-datetime-input-to-fix-bugs-in-ios-safari-1ppwh * JSDOM no longer triggers default actions when dispatching click events. * https://codesandbox.io/s/beautiful-cdn-ugn8f * JSDOM fixed (jsdom/jsdom#2700) a bug so that calling focus() on an already focused element does not dispatch a FocusEvent. * JSDOM now supports passive events. * JSDOM has improved support for custom CSS properties. * But requires jsdom/cssstyle#112 to land to support webkit prefixed properties.
25 lines
815 B
JavaScript
25 lines
815 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
haste: {
|
|
hasteImplModulePath: require.resolve('./noHaste.js'),
|
|
},
|
|
modulePathIgnorePatterns: [
|
|
'<rootDir>/scripts/rollup/shims/',
|
|
'<rootDir>/scripts/bench/',
|
|
],
|
|
transform: {
|
|
'.*': require.resolve('./preprocessor.js'),
|
|
},
|
|
setupFiles: [require.resolve('./setupEnvironment.js')],
|
|
setupFilesAfterEnv: [require.resolve('./setupTests.js')],
|
|
// Only include files directly in __tests__, not in nested folders.
|
|
testRegex: '/__tests__/[^/]*(\\.js|\\.coffee|[^d]\\.ts)$',
|
|
moduleFileExtensions: ['js', 'json', 'node', 'coffee', 'ts'],
|
|
rootDir: process.cwd(),
|
|
roots: ['<rootDir>/packages', '<rootDir>/scripts'],
|
|
collectCoverageFrom: ['packages/**/*.js'],
|
|
timers: 'fake',
|
|
snapshotSerializers: [require.resolve('jest-snapshot-serializer-raw')],
|
|
};
|