Entwine
Entwine copied to clipboard
Testing tools and utilities for Apple's Combine framework.
Results
2
Entwine issues
Sort by
recently updated
recently updated
newest added
RxSwift includes and useful operator that transform any observable into a blocking sequence. For Combine it'll be really useful being able to implement the same behavior. Here's how it works...
enhancement
Why? Sometimes we would like to test some non-published variable values based on given time. Example: ```swift apiClient.fetchQuestions() .receive(on: scheduler) .sink { [weak self] completion in switch completion { case...