theappbusiness / TABTestKit

Library designed to make writing and maintaining automated tests for iOS applications. This includes automation of bio-metrics and controlling of mock servers
MIT License
59 stars 13 forks source link

Use of `await` with Swift 5.5 #151

Closed tshort15-ford closed 2 years ago

tshort15-ford commented 3 years ago

Just a heads-up when compiled with the latest Swift 5.5 compiler in Xcode 13 for iOS 15 it exposes TABTestKit's use of await as a method name. On Xcode 12.5 it's a warning, but an error in Xcode 13. e.g.

await in a function that does not support concurrency

itsmathou commented 3 years ago

Here's a screenshot for reference. Screenshot 2021-06-14 at 15 51 22

Tony and I wanted to try to use Xcode 13 to check a fix from Apple

theblixguy commented 3 years ago

I have opened a PR to resolve this - https://github.com/theappbusiness/TABTestKit/pull/152

itsmathou commented 3 years ago

Thanks!