From a1c5c989d1cf0ba4aba4a56bb671b5c265aaa958 Mon Sep 17 00:00:00 2001 From: Alec Larson <1925840+aleclarson@users.noreply.github.com> Date: Sun, 10 Nov 2024 09:06:14 -0500 Subject: [PATCH] fix test --- tests/async/AggregateError.test.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/async/AggregateError.test.ts b/tests/async/AggregateError.test.ts index 77c0b711..2432e9fd 100644 --- a/tests/async/AggregateError.test.ts +++ b/tests/async/AggregateError.test.ts @@ -1,5 +1,9 @@ import { vi } from 'vitest' +declare const globalThis: { + AggregateError?: unknown +} + const { AggregateError: nativeAggregateError } = globalThis globalThis.AggregateError = undefined!