@@ -137,7 +137,7 @@ describe("Store doesn't update *too many* times during navigation", () => {
137137 // that needs to be done during a navigation.
138138 // Any change that increases this number should be investigated.
139139 // Note: Solid has different update counts than React due to different reactivity
140- expect ( updates ) . toBe ( 13 )
140+ expect ( updates ) . toBe ( 10 )
141141 } )
142142
143143 test ( 'redirection in preload' , async ( ) => {
@@ -173,7 +173,7 @@ describe("Store doesn't update *too many* times during navigation", () => {
173173 // that needs to be done during a navigation.
174174 // Any change that increases this number should be investigated.
175175 // Note: Solid has different update counts than React due to different reactivity
176- expect ( updates ) . toBe ( 12 )
176+ expect ( updates ) . toBe ( 9 )
177177 } )
178178
179179 test ( 'nothing' , async ( ) => {
@@ -200,7 +200,7 @@ describe("Store doesn't update *too many* times during navigation", () => {
200200 // This number should be as small as possible to minimize the amount of work
201201 // that needs to be done during a navigation.
202202 // Any change that increases this number should be investigated.
203- expect ( updates ) . toBe ( 8 )
203+ expect ( updates ) . toBe ( 7 )
204204 } )
205205
206206 test ( 'hover preload, then navigate, w/ async loaders' , async ( ) => {
0 commit comments