From 8aaac1ac800ea5e4f5ac20f903c21d1c54477dd7 Mon Sep 17 00:00:00 2001 From: David Calhoun Date: Wed, 25 Oct 2023 13:13:25 -0400 Subject: [PATCH] docs: Fix E2E test documentation formatting (#55631) This was intended to be a list. Reading them in a single line is difficult. --- packages/react-native-editor/__device-tests__/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/react-native-editor/__device-tests__/README.md b/packages/react-native-editor/__device-tests__/README.md index 394e413156d7f..e9e85312c3f1e 100644 --- a/packages/react-native-editor/__device-tests__/README.md +++ b/packages/react-native-editor/__device-tests__/README.md @@ -83,9 +83,9 @@ The `native test:e2e:(android|ios):local` script performs several steps via asso While we must run all of these at least once to produce a testable app, it is often not necessary to run them each multiple times over while modifying or writing tests. To speed up multiple test runs, you can invoke the individual scripts as needed. -If you only modified the native app code, you can run `test:e2e:build-app:(ios|android)` followed by `device-tests:local`. -If you only modified JavaScript app code, you can run `test:e2e:bundle:(ios|android)` followed by `device-tests:local`. -If you only modified E2E tests code, you can run `device-tests:local`. +- If you only modified the native app code, you can run `test:e2e:build-app:(ios|android)` followed by `device-tests:local`. +- If you only modified JavaScript app code, you can run `test:e2e:bundle:(ios|android)` followed by `device-tests:local`. +- If you only modified E2E tests code, you can run `device-tests:local`. By default `device-tests:local` runs tests for Android. To run tests on iOS, you can prefix the script with the `TEST_RN_PLATFORM` environment variable.