-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathenv.js
More file actions
48 lines (48 loc) · 1.53 KB
/
env.js
File metadata and controls
48 lines (48 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module.exports = {
"is-custom-runtime": false,
"UNI_TEST_CUSTOM_ENV": {
// 以下3个配置项用于定义以App-WebView方式运行的H5页面地址,方便自动化测试App-WebView场景
// "UNI_AUTOMATOR_APP_WEBVIEW": "true",
// "UNI_WEB_SERVICE_URL": "http://xxx.com/xxx.html",
// "UNI_AUTOMATOR_APP_WEBVIEW_SRC": "http://xxx.com/xxx.html"
},
"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": "",
"executablePath": ""
},
"version": "",
"ios": {
"id": "",
"executablePath": ""
},
"uni-app-x": {
"version": "/Applications/HBuilderX-Dev.app/Contents/HBuilderX/plugins/uniappx-launcher/base/version.txt",
"android": {
"id": "emulator-5554",
"executablePath": "/Applications/HBuilderX-Dev.app/Contents/HBuilderX/plugins/uniappx-launcher/base/android_base.apk"
},
"ios": {
"id": "CA80343E-7D4C-401D-81BA-B5B7D446C11D",
"executablePath": "/Applications/HBuilderX-Dev.app/Contents/HBuilderX/plugins/uniappx-launcher/base/Pandora_simulator.app"
}
}
}
}