summaryrefslogtreecommitdiff
path: root/tests/testdata/run/unhandled_rejection_sync_error.ts
blob: 0dabb1cb7a4f94b44aeeb6320aa06fbaf3f63b9d (plain)
1
2
3
4
5
6
globalThis.addEventListener("unhandledrejection", (e) => {
  console.log("unhandled rejection at:", e.promise, "reason:", e.reason);
  e.preventDefault();
});

throw new Error("boom!");