LoginSignup
2
0

More than 5 years have passed since last update.

ある日突然XCUITestが動かなくなったら(fastlane, snapshot, swift, xcode)

Last updated at Posted at 2018-07-02

エラー内容

_finishWithError:Error Domain=IDETestOperationsObserverErrorDomain Code=5 "Launch session expired before checking in." UserInfo={NSLocalizedDescription=Launch session expired before checking in.}
Showing Recent Messages Test target encountered an error (Early unexpected exit, operation never finished bootstrapping - no restart will be attempted)

だいたいこんな↑みたいなエラーが出ました。

解決方法

 target 'PJName' do
   pod 'SDWebImage'

   target 'PJNameUITests' do
     inherit! :search_paths
     # Pods for testing
   end
 end

 target 'PJName' do
   pod 'SDWebImage'
 end

 target 'PJNameUITests' do
   inherit! :search_paths
   # Pods for testing
 end

targetを入れ子にしないで外に出せばいいみたいだね。
そしたらなんかうまくいったよ!

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0