Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode UI tests - Lost connection to test manager service

Sometimes while running my UI tests, I get the following error Lost connection to test manager services. No logs or anything. Happens randomly. I would provide more information but I just don't have it because of the nature of the error.

Using Xcode 7 beta 5.

like image 291
SalmonKiller Avatar asked Aug 24 '15 22:08

SalmonKiller


1 Answers

The error appear for every async operations made in tests. It can be:

  1. Operation on non existing object
  2. dispatch_after
  3. Network operations with wrongly assign block handler
like image 80
Jakub Avatar answered Nov 10 '22 09:11

Jakub