From 86943ee2d1fea97c2452862f8910e973b727b0d2 Mon Sep 17 00:00:00 2001 From: Robert Anderson Date: Mon, 11 Jul 2022 17:44:33 +1000 Subject: [PATCH] Ignore *.d.ts files when running unit tests (#42304) --- test/unit/jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unit/jest.config.js b/test/unit/jest.config.js index 707f6a943fe024..c430aae0ed244c 100644 --- a/test/unit/jest.config.js +++ b/test/unit/jest.config.js @@ -29,6 +29,7 @@ module.exports = { '/.*/build/', '/.*/build-module/', '/.*/build-types/', + '/.+.d.ts$', '/.+.native.js$', '/packages/react-native-*', ],