Laszlo Teveli

Results 19 comments of Laszlo Teveli

Bumped to iOS 16, macOS 13, tvOS 16, watchOS 9 in release 2.0.0

Hi @BetrayalPromise, Sure, I'm happy to add support for more collections. Can you be a bit more specific, which helper methods would you need for those classes you mentioned? Thanks!

Thanks @thedruid for reporting this issue. I can confirm this is a bug. Unfortunately I haven't discovered a solution so far. Let me offer a workaround instead: `.frame(maxWidth: .infinity, maxHeight:...

Hi @NishaTS19! Thanks for your question. If you already know that the Rectangle has a width of 200, you could simply set: ```swift .frame(maxWidth: 200, alignment: .top) ``` for the...

Hi @kushsolitary. Thanks for your question! In WWDC22 I had the opportunity to ask SwiftUI engineers about this online, and their answer was that SwiftUI's `Layout` protocol does not currently...

Great suggestion! It's definitely something I'd like to include in the library eventually. Some of my early prototypes with LazyStacks and LazyGrids seemed promising, just need to find the right...

@grynspan Thanks! If I understand the issue correctly, for a test case like ```swift @Test func testAsyncExpectation() { func value() async -> Int { 1 } #expect(await value() == 2)...

Thank you for the detailed explanation. I understand the tradeoffs now. > We could place our own `await` keyword on the call to `__check()`, and that could let us simplify...

I appreciate the writeup and the warning in https://github.com/apple/swift-testing/pull/302. Thank you @grynspan