summaryrefslogtreecommitdiff
path: root/tests/testdata/run/unhandled_rejection_dynamic_import/import.ts
blob: b490f2c204f643b73e6ce706e22fab8ee816e34a (plain)
1
2
3
4
5
globalThis.addEventListener("unhandledrejection", () => {
  console.log("hey");
});
console.log("---");
Promise.reject();