summaryrefslogtreecommitdiff
path: root/js/globals_test.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-04-02 03:47:25 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-04-01 12:47:25 -0400
commitada5ffa610d2b5400b612917b35d91b98bee2309 (patch)
tree423ba7874b39ffd8f809468d3d81311ecebef089 /js/globals_test.ts
parentc855d0edd2ef5098b806ac6368eb7b0a85d0d0c9 (diff)
Upgrade to TypeScript 3.4.1 (#2027)
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);
});