From 67d8408e19055f545c1453a8cfd75b2104bf987a Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Wed, 16 Feb 2022 12:51:58 +0100 Subject: [PATCH] Add ts extension to glob pattern of transpiled packages --- test/native/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/native/jest.config.js b/test/native/jest.config.js index 8630d9a01a1ccd..f6670b1a28b9ec 100644 --- a/test/native/jest.config.js +++ b/test/native/jest.config.js @@ -15,7 +15,7 @@ if ( process.env.TEST_RN_PLATFORM ) { const configPath = 'test/native'; -const transpiledPackageNames = glob( '../../packages/*/src/index.js' ).map( +const transpiledPackageNames = glob( '../../packages/*/src/index.{js,ts}' ).map( ( fileName ) => fileName.split( '/' )[ 3 ] );