diff options
author | 迷渡 <justjavac@gmail.com> | 2019-09-19 23:40:52 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-19 11:40:52 -0400 |
commit | 1b1ae65a4a2acd55ead86c17e388f10a0e08938d (patch) | |
tree | 8bc2278afa2a89a5152cc47f2ac33a39560df41e /js/globals_test.ts | |
parent | 5102eec92b6150d788ece49fa906c542df63fe41 (diff) |
Make `window` compatible with ts 3.6 (#2984)
Diffstat (limited to 'js/globals_test.ts')
-rw-r--r-- | js/globals_test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/js/globals_test.ts b/js/globals_test.ts index 42a055087..d7c50c5b1 100644 --- a/js/globals_test.ts +++ b/js/globals_test.ts @@ -14,7 +14,6 @@ test(function windowWindowExists(): void { }); test(function globalThisEqualsWindow(): void { - // @ts-ignore (TypeScript thinks globalThis and window don't match) assert(globalThis === window); }); |