设置Wix / Detox-运行他们的本机示例

问题描述

Wix的排毒功能非常有用,我一直很想尝试一下。试图遵循README in the demo-react-native folder,但我认为它有点过时了。

如前所述,我无法使其正常工作。这是我认为自述文件中缺少的内容

  • npm install -g detox-cli-丢失

  • detox init --runner jest-丢失

我尝试将.detoxrc.json设置为

{
  "testRunner": "jest","runnerConfig": "e2e/config.json","configurations": {
    "ios": {
      "type": "ios.simulator","binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/example.app","device": {
        "type": "iPhone 11"
      }
    }
  }
}

但是在一个终端上运行npm startdetox build -c ios会抛出该错误

$ detox build -c ios
detox[89936] ERROR: [cli.js] DetoxConfigError: Could not find a build script inside "ios" configuration.
detox[89936] ERROR: [cli.js] 
detox[89936] ERROR: [cli.js] HINT: Check contents of your Detox config at path:
detox[89936] ERROR: [cli.js] /Users/norfeldt/Desktop/Detox/examples/demo-react-native/.detoxrc.json
detox[89936] ERROR: [cli.js] 
detox[89936] ERROR: [cli.js] {
detox[89936] ERROR: [cli.js]   configurations: {
detox[89936] ERROR: [cli.js]     ios: {
detox[89936] ERROR: [cli.js]       type: 'ios.simulator',detox[89936] ERROR: [cli.js]       binaryPath: 'ios/build/Build/Products/Debug-iphonesimulator/example.app',detox[89936] ERROR: [cli.js]       device: [Object]
detox[89936] ERROR: [cli.js]     }
detox[89936] ERROR: [cli.js]   }
detox[89936] ERROR: [cli.js] }

运行detox build --configuration ios.sim.release(如 README 中所述)会引发以下情况:

$ detox build --configuration ios.sim.release
detox[91765] ERROR: [cli.js] DetoxConfigError: Failed to find a configuration named "ios.sim.release" in Detox config at path:
detox[91765] ERROR: [cli.js] /Users/norfeldt/Desktop/Detox/examples/demo-react-native/.detoxrc.json
detox[91765] ERROR: [cli.js] 
detox[91765] ERROR: [cli.js] HINT: Below are the configurations Detox was able to find:
detox[91765] ERROR: [cli.js] * ios

本来会为我认为缺少的事情做一个PR,但想确保它首先起作用-我无法理解。

任何帮助将不胜感激

解决方法

请注意,演示项目不再为iOS维护。您最好创建一个新的RN项目,按照我们的文档集成Detox,然后开始添加您的第一个测试。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...