mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
fix: update MarketplaceViewStateManager test to match default isFetching state (#4954)
The test was expecting isFetching to be false in the default state, but the implementation correctly initializes it as true to show a loading state on initial load. Updated the test expectation to match the actual behavior.
This commit is contained in:
parent
2f30af00b4
commit
9da598c9db
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ describe("MarketplaceViewStateManager", () => {
|
|||
|
||||
expect(state.allItems).toEqual([])
|
||||
expect(state.displayItems).toEqual([])
|
||||
expect(state.isFetching).toBe(false)
|
||||
expect(state.isFetching).toBe(true)
|
||||
expect(state.activeTab).toBe("mcp")
|
||||
expect(state.filters).toEqual({
|
||||
type: "",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue