test(query-devtools/utils): add tests for 'getQueryStatusColor'#10670
Merged
Conversation
Contributor
|
View your CI Pipeline Execution ↗ for commit 965b057
☁️ Nx Cloud last updated this comment at |
Contributor
🚀 Changeset Version PreviewNo changeset entries found. Merging this PR will not cause a version bump for any packages. |
More templates
@tanstack/angular-query-experimental
@tanstack/eslint-plugin-query
@tanstack/lit-query
@tanstack/preact-query
@tanstack/preact-query-devtools
@tanstack/preact-query-persist-client
@tanstack/query-async-storage-persister
@tanstack/query-broadcast-client-experimental
@tanstack/query-core
@tanstack/query-devtools
@tanstack/query-persist-client-core
@tanstack/query-sync-storage-persister
@tanstack/react-query
@tanstack/react-query-devtools
@tanstack/react-query-next-experimental
@tanstack/react-query-persist-client
@tanstack/solid-query
@tanstack/solid-query-devtools
@tanstack/solid-query-persist-client
@tanstack/svelte-query
@tanstack/svelte-query-devtools
@tanstack/svelte-query-persist-client
@tanstack/vue-query
@tanstack/vue-query-devtools
commit: |
Contributor
size-limit report 📦
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎯 Changes
Add unit tests for the
getQueryStatusColorhelper inquery-devtools/utils.tsx.The helper maps a query's
fetchStatus,observerCount, andisStaleflag to one of five status colors used in the devtools UI.Cases:
'blue'whenfetchStatusis'fetching''blue'even when there are no observers iffetchStatusis'fetching'(guards the'fetching'-over-!observerCountprecedence)'gray'when there are no observers'purple'whenfetchStatusis'paused''purple'even when stale iffetchStatusis'paused'(guards the'paused'-over-isStaleprecedence)'yellow'when the query is stale'green'when the query is active and not staleThe
queryStateis built from a realQueryinstance viaqueryClient.getQueryCache().build, mirroring the pattern used by the existingsortFnsandmutationSortFnssuites.queryClient.clear()runs inafterEachto keep tests isolated.✅ Checklist
pnpm run test:pr.🚀 Release Impact
Summary by CodeRabbit
Release Notes