You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then, i updated the testbase class by removing the comment and extent if from XCFit.
Then moved to HomeScreenTest.swift, uncommented the:
givenILaunchedApplication()
And run the test.
The expected result would be to run the app in simulator, run the test and pass (maybe with warnings as there is no expectations).
The actual result was 4 errors:
21: let result = XCTWaiter().wait(for: [xcfitExpectation], timeout: 60)
30: let result = XCTWaiter().wait(for: [xcfitExpectation], timeout: 60)
38: let result = XCTWaiter().wait(for: [xcfitExpectation], timeout: 60)
46: let result = XCTWaiter().wait(for: [xcfitExpectation], timeout: 60)
All with the error of: Use of unresolved identifier 'XCTWaiter'.
The text was updated successfully, but these errors were encountered:
@lferro9000 Yeah.. thats my bad.. latest version of the Pod has the Swift 3.1 features like XCWaiter and XCUiSiriService. Can you please point your Pod to 3.0.0 version or Swift 3.0.2 branch please
pod 'XCFit', :git => 'https://github.com/Shashikant86/XCFit.git', :branch => 'Swift3.0.2'
This will definitely work :) Let me know if you still have issues
When generating a test project with XCFit, after installing the pods i get in the Podfile.lock:
Then, i updated the testbase class by removing the comment and extent if from XCFit.
Then moved to HomeScreenTest.swift, uncommented the:
And run the test.
The expected result would be to run the app in simulator, run the test and pass (maybe with warnings as there is no expectations).
The actual result was 4 errors:
All with the error of: Use of unresolved identifier 'XCTWaiter'.
The text was updated successfully, but these errors were encountered: