Skip to content

v11.2.0

Compare
Choose a tag to compare
@younata younata released this 12 Nov 01:39
· 89 commits to main since this release

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

  • Remove autoclosure tag with async expectations by @younata in #1020

Full Changelog: v11.1.1...v11.2.0