diff options
author | ud2 <sjx233@qq.com> | 2023-07-04 02:36:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 14:36:55 -0400 |
commit | d632cce129cb7025a34cf0aa7262a38fb12f47c4 (patch) | |
tree | 6fe672badbe6ea0fb8a30ecc88b74c613aaa7370 /cli/tests/unit | |
parent | e8a866ca8a682b552722926161a7816c5cf94124 (diff) |
fix(dts): make globals available on globalThis (#19438)
This PR changes Web IDL interfaces to be declared with `var` instead of
`class`, so that accessing them via `globalThis` does not raise type
errors.
Closes #13390.
Diffstat (limited to 'cli/tests/unit')
-rw-r--r-- | cli/tests/unit/cache_api_test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/tests/unit/cache_api_test.ts b/cli/tests/unit/cache_api_test.ts index 2f807de44..c1bd7031e 100644 --- a/cli/tests/unit/cache_api_test.ts +++ b/cli/tests/unit/cache_api_test.ts @@ -97,7 +97,6 @@ Deno.test(async function cacheApi() { }); Deno.test(function cacheIllegalConstructor() { - // @ts-expect-error illegal constructor assertThrows(() => new Cache(), TypeError, "Illegal constructor"); // @ts-expect-error illegal constructor assertThrows(() => new Cache("foo", "bar"), TypeError, "Illegal constructor"); |