summaryrefslogtreecommitdiff
path: root/tests/testdata/run/rejection_handled.ts
blob: 16506ea4a04f4e04165c6e86e44879a122026400 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
window.addEventListener("unhandledrejection", (event) => {
  console.log("unhandledrejection", event.reason, event.promise);
  event.preventDefault();
});

window.addEventListener("rejectionhandled", (event) => {
  console.log("rejectionhandled", event.reason, event.promise);
});

const a = Promise.reject(1);
setTimeout(async () => {
  a.catch(() => console.log("Added catch handler to the promise"));
}, 10);

setTimeout(() => {
  console.log("Success");
}, 1000);