summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/rejection_handled.ts
blob: f058ff966514d552500286a1df500dcaa81fa83f (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");
}, 50);