美文网首页
detox环境搭建笔记

detox环境搭建笔记

作者: 数字d | 来源:发表于2021-01-13 15:17 被阅读0次

1.系统目录:命令行安装Node.js


brew update && brew install node

2.系统目录:安装applesimutils


brew tap wix/brew


brew install applesimutils

3.系统目录:安装detox-cli


npm install -g detox-cli

4.系统目录:安装 react-native-cli


npm install -g react-native-cli

5.项目目录:安装jest工具


npm install jest --save-dev

6.项目目录:安装Detox到项目


npm install detox --save-dev

7.更新package.json里面的内容,更新.detoxrc.json里面的内容

8.构建用例文件夹


detox init -r jest

9.项目目录:构建APP


detox build --configuration ios.sim.debug 

10.项目目录:执行用例


detox test --configuration ios.sim.debug

相关文章

网友评论

      本文标题:detox环境搭建笔记

      本文链接:https://www.haomeiwen.com/subject/yiguaktx.html