summaryrefslogtreecommitdiff
path: root/js/globals_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/globals_test.ts')
-rw-r--r--js/globals_test.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/globals_test.ts b/js/globals_test.ts
index 64a5c37ab..60b560134 100644
--- a/js/globals_test.ts
+++ b/js/globals_test.ts
@@ -14,6 +14,7 @@ test(function windowWindowExists() {
});
test(function globalThisEqualsWindow() {
+ // @ts-ignore (TypeScript thinks globalThis and window don't match)
assert(globalThis === window);
});