2***@qq.com
2***@qq.com
  • 发布:2024-05-04 02:50
  • 更新:2024-05-05 00:22
  • 阅读:205

配置jest.config.js后,自动化测试依然无法使用android自定义基座进行测试

分类:uni-app
复制代码const path = require("path")  
module.exports = {  
    testTimeout: 10000,  
    reporters: [  
        'default'  
    ],  
    watchPathIgnorePatterns: ['/node_modules/', '/dist/', '/.git/'],  
    moduleFileExtensions: ['js', 'json'],  
    rootDir: __dirname,  
    testMatch: ["<rootDir>/pages/**/*test.[jt]s?(x)","<rootDir>/*pack/**/*test.[jt]s?(x)"],  
    testPathIgnorePatterns: ['/node_modules/'],  
    testEnvironmentOptions: {  
        compile: true,  
        "app-plus": { // 需要安装 HBuilderX  
            android: {  
                appid: "__UNI__A4BB50E", //自定义基座测试需配置manifest.json中的appid  
                package: "io.biquge", //自定义基座测试需配置Android包名  
                executablePath: path.join(__dirname,"unpackage/debug/android_debug.apk")   // apk 目录或自定义调试基座包路径  
            }  
        }  

    }  
}

到底哪里错了

2024-05-04 02:50 负责人:无 分享
已邀请:
2***@qq.com

2***@qq.com (作者)

解决办法一:
直接不修改jest.config.js了,转而修改env.js的is-custom-runtime字段和app-plus.android.executablePath字段,
is-custom-runtime字段值为true,app-plus.android.executablePath字段值为自定义基座路径

复制代码module.exports = {  
    "is-custom-runtime": true,  
    "compile": true,  
    "h5": {  
        "options": {  
            "headless": true  
        },  
        "executablePath": ""  
    },  
    "mp-weixin": {  
        "port": 9420,  
        "account": "",  
        "args": "",  
        "cwd": "",  
        "launch": true,  
        "teardown": "disconnect",  
        "remote": false,  
        "executablePath": ""  
    },  
    "app-plus": {  
        "android": {  
            "id": "192.168.10.5",  
            "executablePath": "E:\\book\\unpackage\\debug\\android_debug.apk"  
        },  
        "version": "E:\\HBuilderX\\HBuilderX\\plugins\\launcher\\base\\version.txt",  
        "ios": {  
            "id": "",  
            "executablePath": ""  
        }  
    }  
}
  • 2***@qq.com (作者)

    方法一是错误的,解决失败

    2024-05-05 14:40

要回复问题请先登录注册

  • 标题 / 粗斜体
  • 代码片段
  • 超链接 / 图片 / 视频
  • 列表 / 引用

文章内容较多时,可以用标题分段 :

## 大标题 
### 小标题

斜体 / 粗体 :

**粗体** 
*斜体*
***粗斜体***

代码片段 :

``` javascript
代码片段
```

超链接 :

[链接文字](链接地址) 例: [百度](http://www.baidu.com)

图片 :

![图片说明](图片地址) 例: ![百度logo](http://www.baidu.com/img/bdlogo.gif)

视频 :

!![视频说明](视频地址) 例: !![优酷视频](http://youku.com)

有序列表 :

1. 123
2. 123
3. 123

无序列表 :

- 123
- 123
- 123

引用 : ( 双回车后结束引用 )

> 引用内容
引用内容
引用内容