summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/unhandled_rejection.js
blob: 352e861b461c8d4cf181cb0143c4279fe012aaab (plain)
1
2
3
4
5
6
7
8
9
10
11
globalThis.addEventListener("unhandledrejection", (e) => {
  console.log("unhandled rejection at:", e.promise, "reason:", e.reason);
  e.preventDefault();
});

function Foo() {
  this.bar = Promise.reject(new Error("bar not available"));
}

new Foo();
Promise.reject();