summaryrefslogtreecommitdiff
path: root/tests/specs/test/finally_timeout/main.ts
blob: dcc0a4d6411c776754a6850e119e1d8c69d3f89e (plain)
1
2
3
4
5
6
7
8
9
10
11
Deno.test("error", function () {
  const timer = setTimeout(() => null, 10000);
  try {
    throw new Error("fail");
  } finally {
    clearTimeout(timer);
  }
});

Deno.test("success", function () {
});