summaryrefslogtreecommitdiff
path: root/tests/async_error.ts
blob: 7ce25d0cb67d2dd760f12e2b74c97d3b06933441 (plain)
1
2
3
4
5
6
7
8
console.log("hello");
const foo = async () => {
  console.log("before error");
  throw Error("error");
};

foo();
console.log("world");