diff --git a/config/jest.config.js b/config/jest.config.js index 977c2e8e80a..1e0d714b4ac 100644 --- a/config/jest.config.js +++ b/config/jest.config.js @@ -29,15 +29,7 @@ const defaults = { const ignoreTSFiles = ".ts$"; const ignoreTSXFiles = ".tsx$"; -const react19TestFileIgnoreList = [ - ignoreTSFiles, - // The HOCs and Render Prop Components have been deprecated since March 2020, - // and to test them we would need to rewrite a lot of our test suites. - // We will not support them any more for React 19. - // They will probably work, but we make no more guarantees. - "src/react/hoc/.*", - "src/react/components/.*", -]; +const react19TestFileIgnoreList = [ignoreTSFiles]; const react17TestFileIgnoreList = [ ignoreTSFiles,