diff --git a/.buildkite/pipeline.release.fast.yml b/.buildkite/pipeline.release.fast.yml index 159f48a24b..884f8eb70a 100644 --- a/.buildkite/pipeline.release.fast.yml +++ b/.buildkite/pipeline.release.fast.yml @@ -18,18 +18,6 @@ JAVA_HOME: /opt/openjdk/openlogic-openjdk-17.0.9+9-mac-x64/jdk-17.0.9.jdk/Contents/Home artifact_paths: "/Users/builder/uibuilder/work/detox/Detox-android/**/*" - - label: ":android: Package android Legacy" - key: 'android_package_legacy' - command: - - "nvm install" - - "npm install" - - "npm run package:android" - env: - REACT_NATIVE_VERSION: 0.71.10 - DETOX_DISABLE_POSTINSTALL: true - DETOX_DISABLE_POD_INSTALL: true - artifact_paths: "/Users/builder/uibuilder/work/detox/Detox-android/**/*" - - label: ":shipit: Publish" depends_on: - 'android_package' diff --git a/README.md b/README.md index cb3e587245..c9b4b63864 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ The most difficult part of automated testing on mobile is the tip of the testing Detox was built from the ground up to support React Native projects. -While Detox should work out of the box with almost any React Native version of the latest minor releases, official support is provided for React Native versions `0.72.x`, `0.73.x`, `0.74.x`, `0.75.x`, `0.76.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page). +While Detox should work out of the box with almost any React Native version of the latest minor releases, official support is provided for React Native versions `0.73.x`, `0.74.x`, `0.75.x` and `0.76.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page). Newer versions, as well as React Native's "New Architecture", may work with Detox, but have not been tested out yet by the Detox team. diff --git a/detox/test/e2e/07.stress-tests.test.js b/detox/test/e2e/07.stress-tests.test.js index 3408963e12..53cea2b040 100644 --- a/detox/test/e2e/07.stress-tests.test.js +++ b/detox/test/e2e/07.stress-tests.test.js @@ -40,7 +40,7 @@ describe('StressTests', () => { } }); - it(':android: should handle tap during storage stress', async () => { + it.skip(':android: should handle tap during storage stress', async () => { try { await element(by.text('Storage Stress')).tap(); await expect(element(by.text('StorageStress'))).toBeVisible(); diff --git a/docs/introduction/partials/_getting-started-rn.md b/docs/introduction/partials/_getting-started-rn.md index bdd82afeb9..ea6bdad2fe 100644 --- a/docs/introduction/partials/_getting-started-rn.md +++ b/docs/introduction/partials/_getting-started-rn.md @@ -4,7 +4,7 @@ Detox was built from the ground up to support "classic" React Native projects. :::info Note -While Detox should work out of the box with almost any React Native version from the past few minor releases, official support is provided for React Native versions `0.71.x`, `0.72.x` and `0.73.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page). +While Detox should work out of the box with almost any React Native version from the past few minor releases, official support is provided for React Native versions `0.73.x`, `0.74.x`, `0.75.x` and `0.76.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page). Newer versions, as well as React Native's "New Architecture", may work with Detox, but have not been tested out yet by the Detox team.