Improved developer experience by allowing you to use the sync form of expect
in a test that has other usage of async test. i.e. the following code compiles again:
class MyTest: XCTestCase {
func testExample() {
await someAsyncFunction()
expect(someValue).to(equal(expectedValue))
}
}
What's Changed
Full Changelog: v11.1.1...v11.2.0