Open Cordova-ios.xcworkspace and you have the following targets: - Cordova (a framework) - CordovaFrameworkApp (Sample app to test framework) - CordovaLib (Static Library) - CordovaLibApp (Sample app to test static library target) - CordovaLibTests (Test suite for static library target)
I am referring to the CordovaFrameworkApp which runs the test suite. If you have xcode-select configured for xcode10 you can also run this command which is one of the test suites executed by the PR checks. `xcodebuild test -workspace tests/cordova-ios.xcworkspace -scheme CordovaFrameworkApp -destination "platform=iOS Simulator,name=iPhone 8" CONFIGURATION_BUILD_DIR="`mktemp -d 2>/dev/null || mktemp -d -t 'cordova-ios'`"` [ Full content available at: https://github.com/apache/cordova-ios/pull/409 ] This message was relayed via gitbox.apache.org for [email protected]
