summaryrefslogtreecommitdiff
path: root/tests/testdata/test/aggregate_error.ts
blob: 0661ea249511376859a8f87532130a7bd24a2ca1 (plain)
1
2
3
4
5
6
Deno.test("aggregate", function () {
  const error1 = new Error("Error 1");
  const error2 = new Error("Error 2");

  throw new AggregateError([error1, error2]);
});