summaryrefslogtreecommitdiff
path: root/tests/specs/test/uncaught_errors/uncaught_errors_2.ts
blob: 8cafbe291b94ecd0e8d5a7a5fd0a564e7b32052c (plain)
1
2
3
4
5
6
7
8
Deno.test("bar 1", () => {});

Deno.test("bar 2", () => {
  throw new Error("bar 2");
});
Deno.test("bar 3", () => {
  throw new Error("bar 3 message");
});