React native ios/build/build/Products/Debug iphonesimulator/lottie ios/lottie.modulemap';测试排毒时未发现

React native ios/build/build/Products/Debug iphonesimulator/lottie ios/lottie.modulemap';测试排毒时未发现,react-native,react-native-ios,e2e-testing,detox,React Native,React Native Ios,E2e Testing,Detox,我最近更新了我的项目,使其响应本机0.61.5,但现在我的e2e在ios上失败了。由于洛蒂的原因,该项目无法建设。 我在我的机器中构建项目时遇到了同样的问题,但是通过打开xcworkspace而不是xcodeproj来解决这个问题,但是当我尝试使用detox config执行同样的操作时,我得到了错误 错误:“ios/Project.xcworkspace”不是项目文件。 我的排毒配置: "detox": { "configurations": { "ios.sim.debu

我最近更新了我的项目,使其响应本机0.61.5,但现在我的e2e在ios上失败了。由于洛蒂的原因,该项目无法建设。 我在我的机器中构建项目时遇到了同样的问题,但是通过打开xcworkspace而不是xcodeproj来解决这个问题,但是当我尝试使用detox config执行同样的操作时,我得到了错误

错误:“ios/Project.xcworkspace”不是项目文件。

我的排毒配置:

"detox": {
    "configurations": {
      "ios.sim.debug": {
        "binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Project.app",
        "build": "xcodebuild -UseModernBuildSystem=NO -project ios/Project.xcodeproj -scheme Project -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
        "type": "ios.simulator",
        "name": "iPhone 11"
      },
      "ios.sim.release": {
        "binaryPath": "ios/build/Build/Products/Release-iphonesimulator/Project.app",
        "build": "xcodebuild -UseModernBuildSystem=NO -project ios/Project.xcodeproj -scheme Project -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
        "type": "ios.simulator",
        "name": "iPhone 11"
      }
    }
  }