-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(detox): use a version of Detox that works with React Native 0.76/…
…Expo v52 (#29679) ## Current Behavior After adding `@nx/detox` to a newly-generated project, Detox E2E apps will either fail to build or run with intermittent crashes on Android. ## Expected Behavior Detox E2E apps should run as they normally did with React Native 0.74/Expo v51.
- Loading branch information
1 parent
4100515
commit ed186fd
Showing
2 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export const nxVersion = require('../../package.json').version; | ||
|
||
export const detoxVersion = '~20.28.0'; | ||
export const detoxVersion = '~20.31.0'; | ||
export const testingLibraryJestDom = '~6.6.3'; | ||
export const configPluginsDetoxVersion = '~8.0.0'; // only required for expo | ||
export const configPluginsDetoxVersion = '~9.0.0'; // only required for expo |