summaryrefslogtreecommitdiff
path: root/tests/specs/test/uncaught_errors/uncaught_errors_1.ts
blob: 166b23ac3f0c9c194508704538e6e3c859021dc9 (plain)
1
2
3
4
5
6
7
8
9
Deno.test("foo 1", () => {
  throw new Error("foo 1 message");
});

Deno.test("foo 2", () => {});

Deno.test("foo 3", () => {
  Promise.reject(new Error("foo 3 message"));
});