summaryrefslogtreecommitdiff
path: root/tests/specs/test/report_error/main.ts
blob: 56b6db26c8751c7d975f0f51eee192e3303fc145 (plain)
1
2
3
4
5
6
Deno.test("foo", () => {
  reportError(new Error("foo"));
  console.log(1);
});

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