У меня есть следующий Podfile, который включает цель теста с хост-приложением:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.2'
use_frameworks!
inhibit_all_warnings!
target 'AnimalHouse' do
pod 'SnapKit'
pod 'Kingfisher'
pod 'KingfisherWebP'
# RxSwift
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
# Firebase
pod 'Firebase/Core'
pod 'Firebase/Firestore'
pod 'Firebase/Auth'
pod 'CodableFirebase'
# Crashlytics
pod 'Fabric'
pod 'Crashlytics'
target 'AnimalHouseTests' do
inherit! :search_paths
pod 'RxTest'
pod 'RxBlocking'
end
end
target 'AnimalHouseTestsHostApplication' do
end
Цель теста строится, но тесты не запускаются, и я получаю следующую ошибку: AnimalHouseTestsHostApplication.app (4820) encountered an error (Early unexpected exit, operation never finished bootstrapping - no restart will be attempted. (Underlying error: The test runner exited with code 1 before checking in.))
В чем именно проблема?