File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
tests-unit/tests/core/routing Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ declare global {
178178 * Only available in edge runtime functions.
179179 * Defined in createEdgeBundle.
180180 */
181+ // biome-ignore lint/suspicious/noRedeclare: This is only needed in the edge runtime
181182 var AsyncLocalStorage : any ;
182183
183184 /**
Original file line number Diff line number Diff line change @@ -68,14 +68,14 @@ const queue = {
6868 send : vi . fn ( ) ,
6969} ;
7070
71- globalThis . incrementalCache = incrementalCache ;
72- globalThis . tagCache = tagCache ;
73-
7471declare global {
7572 var queue : Queue ;
7673 var incrementalCache : any ;
7774 var tagCache : any ;
7875}
76+
77+ globalThis . incrementalCache = incrementalCache ;
78+ globalThis . tagCache = tagCache ;
7979globalThis . queue = queue ;
8080
8181beforeEach ( ( ) => {
You can’t perform that action at this time.
0 commit comments