We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi nguyen come across with composable architecture,
would you mind provide the sample for unit test as well, it would be more pleasure to have it 😄
Thank you
The text was updated successfully, but these errors were encountered:
Hi JohnEtas9. I don't have time for this, you can test simple like:
let store = Store(initialState: CounterState(), reducer: CounterReducer, environment: CounterEnvironment()) let viewStore = ViewStore(store) viewStore.send(.increment) viewStore.publisher.sink { value in XCTAssertEqual(1, value.count) } .store(in: &cancellables)
Sorry, something went wrong.
I welcome any contribution, if you have any idea, suggestion, let me know @JohnEtas9
No branches or pull requests
Hi nguyen come across with composable architecture,
would you mind provide the sample for unit test as well, it would be more pleasure to have it 😄
Thank you
The text was updated successfully, but these errors were encountered: