Skip to content
New issue

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

debounce causes tests to fail #22

Open
ndiritumichael opened this issue Oct 21, 2024 · 0 comments
Open

debounce causes tests to fail #22

ndiritumichael opened this issue Oct 21, 2024 · 0 comments

Comments

@ndiritumichael
Copy link
Owner

ndiritumichael commented Oct 21, 2024

Using debounce in the snapshot flow of the IssueViewmodel causes E2E and Viewmodel tests to fail but after replacing with a delay in the flatmap lamda .

@OptIn(ExperimentalCoroutinesApi::class, FlowPreview::class)
       val issuesResults =
            combine(
                snapshotFlow {
                    searchQuery
                }
                    // .debounce(debounceDuration) causes tests to fail
                    .map {
                        if (it.length < 3) null else it
                    },
                issueSearchModelState,
                selectedLabels,
                selectedAssignees,
                selectedIssueState,
            ) {
                    searchQuery,
                    issueSearchModel,
                    selectedLabels,
                    selectedAssignees,
                    selectedIssueState,
                ->
                delay(debounceDuration)
//rest of code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant