Skip to content

Commit 84a2765

Browse files
vzaidmanfacebook-github-bot
authored andcommitted
renamed release testing scripts (#52541)
Summary: Use a more suitable name for the [scripts used in the release process](https://github.com/reactwg/react-native-releases/blob/main/docs/guide-release-testing.md) to generate a testing project to test a new React Native release against. ```diff - test-e2e-local + test-release-local ``` ## Changelog: [INTERNAL] Pull Request resolved: #52541 Test Plan: `yarn test-release-local-clean` works the same way: <img width="1177" height="161" alt="Screenshot 2025-07-10 at 17 54 50" src="https://github.com/user-attachments/assets/5efe30c6-a738-476e-a670-696959e9a0fc" /> `yarn test-release-local` works the same way: <img width="1077" height="395" alt="Screenshot 2025-07-10 at 17 59 29" src="https://github.com/user-attachments/assets/fe6c6443-9316-4ed0-b6dc-51de5ffb109c" /> Reviewed By: cipolleschi Differential Revision: D78150648 Pulled By: vzaidman fbshipit-source-id: 471715da271d03bc2a35afbda02074bf71f62734
1 parent 6b8bc5a commit 84a2765

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"set-version": "node ./scripts/releases/set-version.js",
2929
"test-android": "./gradlew :packages:react-native:ReactAndroid:test",
3030
"test-ci": "jest --maxWorkers=2 --ci --reporters=\"default\" --reporters=\"jest-junit\"",
31-
"test-e2e-local-clean": "node ./scripts/release-testing/test-e2e-local-clean.js",
32-
"test-e2e-local": "node ./scripts/release-testing/test-e2e-local.js",
31+
"test-release-local-clean": "node ./scripts/release-testing/test-release-local-clean.js",
32+
"test-release-local": "node ./scripts/release-testing/test-release-local.js",
3333
"test-ios": "./scripts/objc-test.sh test",
3434
"test-typescript": "tsc -p packages/react-native/types/tsconfig.json",
3535
"test-generated-typescript": "tsc -p packages/react-native/types_generated/tsconfig.test.json",

scripts/release-testing/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Scripts supporting local manual release testing. See also [How to Test a Release
66

77
For information on command arguments, run `node <command> --help`.
88

9-
### `test-e2e-local`
9+
### `test-release-local`
1010

1111
Set up, build, and install a given test app configuration.
1212

13-
### `test-e2e-local-clean`
13+
### `test-release-local-clean`
1414

1515
Clean up all file system and cache state between tests.

scripts/release-testing/test-e2e-local-clean.js renamed to scripts/release-testing/test-release-local-clean.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
'use strict';
1212

1313
/*
14-
* This script, paired with test-e2e-local.js, is the full suite of
14+
* This script, paired with test-release-local.js, is the full suite of
1515
* tooling needed for a successful local testing experience.
1616
* This script is an helper to clean up the environment fully
1717
* before running the test suite.
File renamed without changes.

0 commit comments

Comments
 (0)