Skip to content

Commit 1c8aab6

Browse files
committed
biome fix
1 parent 5e8383f commit 1c8aab6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

packages/open-next/src/types/global.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
/**

packages/tests-unit/tests/core/routing/cacheInterceptor.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ const queue = {
6868
send: vi.fn(),
6969
};
7070

71-
globalThis.incrementalCache = incrementalCache;
72-
globalThis.tagCache = tagCache;
73-
7471
declare global {
7572
var queue: Queue;
7673
var incrementalCache: any;
7774
var tagCache: any;
7875
}
76+
77+
globalThis.incrementalCache = incrementalCache;
78+
globalThis.tagCache = tagCache;
7979
globalThis.queue = queue;
8080

8181
beforeEach(() => {

0 commit comments

Comments
 (0)