summaryrefslogtreecommitdiff
path: root/tests/testdata/run/rejection_handled.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-08-29 00:56:15 +0100
committerGitHub <noreply@github.com>2024-08-29 01:56:15 +0200
commit57541b48ba0402a8ff4a1e30c7e326fe9edab241 (patch)
tree1f3ec518b5e4fdcbd4366be8057c5c31276bac92 /tests/testdata/run/rejection_handled.ts
parent3afa3db4d394b0e63e63ad4e09645f74eea39c4a (diff)
test: replace usage of `window` with `globalThis` (#25284)
Fixes several tests blocking https://github.com/denoland/deno/pull/25213 by replacing `window` global that is gone in Deno 2 with `globalThis`. Also adjusted a few tests using deprecated `rid` field.
Diffstat (limited to 'tests/testdata/run/rejection_handled.ts')
-rw-r--r--tests/testdata/run/rejection_handled.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testdata/run/rejection_handled.ts b/tests/testdata/run/rejection_handled.ts
index 16506ea4a..8822203f1 100644
--- a/tests/testdata/run/rejection_handled.ts
+++ b/tests/testdata/run/rejection_handled.ts
@@ -1,9 +1,9 @@
-window.addEventListener("unhandledrejection", (event) => {
+globalThis.addEventListener("unhandledrejection", (event) => {
console.log("unhandledrejection", event.reason, event.promise);
event.preventDefault();
});
-window.addEventListener("rejectionhandled", (event) => {
+globalThis.addEventListener("rejectionhandled", (event) => {
console.log("rejectionhandled", event.reason, event.promise);
});