From 3c03aef1511844262f38149ad261e26703f55ead Mon Sep 17 00:00:00 2001 From: Adnan Bacic Date: Mon, 16 Jan 2023 03:03:53 -0800 Subject: [PATCH] rename App-test.tsx to App.test.tsx (#35826) Summary: The starter test file when creating a `create-react-app` project is `App.test.js`, while in react-native its `App-test.js`_(recently changed to `.tsx` instead of `.js`)_ This aims to unify the naming convention between `create-react-app` and `react-native init`. Originally suggested here: https://github.com/react-native-community/discussions-and-proposals/discussions/570 ## Changelog [GENERAL] [CHANGED] - Renamed App-test.tsx to App.test.tsx to unify naming convention with create-react-app Pull Request resolved: https://github.com/facebook/react-native/pull/35826 Test Plan: 1. cd template 2. yarn 3. yarn test The test inside `__tests__/App.test.tsx` should (still) pass Reviewed By: cipolleschi Differential Revision: D42527535 Pulled By: NickGerleman fbshipit-source-id: 5247c5a65760973afe39a4b37abb5a6b52c1fadc --- template/__tests__/{App-test.tsx => App.test.tsx} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename template/__tests__/{App-test.tsx => App.test.tsx} (100%) diff --git a/template/__tests__/App-test.tsx b/template/__tests__/App.test.tsx similarity index 100% rename from template/__tests__/App-test.tsx rename to template/__tests__/App.test.tsx