在 detox 中构建命令
Build command in detox
查看此文档:https://github.com/wix/Detox/blob/master/docs/APIRef.Configuration.md
它说
Build command (either xcodebuild, react-native run-ios, etc...), will
be later available through detox CLI tool.
我正在尝试设置构建命令以使用 Android。我应该在构建命令中添加 react-native run-android
吗? Detox CLI 工具是什么意思?
build
字段是可选的,应该包含在 binaryPath
中指定的路径中设置和准备好 .apk
文件所需的任何执行逻辑。非常欢迎您参考 Detox example project,它正是为此类问题而设置的参考。
无论如何,来自 react-native
CLI 工具的帮助:react-native run-android
= builds your app and starts it on a connected Android emulator or device
。这使得它不太适合,因为我们通常想要构建应用程序,并让 detox 启动模拟器(可选)并根据需要在设备上安装应用程序。
查看此文档:https://github.com/wix/Detox/blob/master/docs/APIRef.Configuration.md
它说
Build command (either xcodebuild, react-native run-ios, etc...), will be later available through detox CLI tool.
我正在尝试设置构建命令以使用 Android。我应该在构建命令中添加 react-native run-android
吗? Detox CLI 工具是什么意思?
build
字段是可选的,应该包含在 binaryPath
中指定的路径中设置和准备好 .apk
文件所需的任何执行逻辑。非常欢迎您参考 Detox example project,它正是为此类问题而设置的参考。
无论如何,来自 react-native
CLI 工具的帮助:react-native run-android
= builds your app and starts it on a connected Android emulator or device
。这使得它不太适合,因为我们通常想要构建应用程序,并让 detox 启动模拟器(可选)并根据需要在设备上安装应用程序。