No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
d240448
... +0 ...
e947372
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
217 | 217 | // MARK: Skip Repeats for Equatable States |
|
218 | 218 | ||
219 | 219 | extension Store { |
|
220 | - | open func subscribe<SelectedState: Equatable, S: StoreSubscriber>( |
|
220 | + | public func subscribe<SelectedState: Equatable, S: StoreSubscriber>( |
|
221 | 221 | _ subscriber: S, transform: ((Subscription<State>) -> Subscription<SelectedState>)? |
|
222 | 222 | ) where S.StoreSubscriberStateType == SelectedState |
|
223 | 223 | { |
233 | 233 | } |
|
234 | 234 | ||
235 | 235 | extension Store where State: Equatable { |
|
236 | - | open func subscribe<S: StoreSubscriber>(_ subscriber: S) |
|
236 | + | public func subscribe<S: StoreSubscriber>(_ subscriber: S) |
|
237 | 237 | where S.StoreSubscriberStateType == State { |
|
238 | 238 | guard subscriptionsAutomaticallySkipRepeats else { |
|
239 | 239 | subscribe(subscriber, transform: nil) |
Files | Coverage |
---|---|
ReSwift | 98.96% |
Project Totals (6 files) | 98.96% |
e947372
d240448