summaryrefslogtreecommitdiff
path: root/cli/tests/unit/ref_unref_test.ts
blob: da6e95efc898f45bd46a7bab17c852987b7fb8f6 (plain)
1
2
3
4
5
6
7
8
9
10
import { assertNotEquals, execCode } from "./test_util.ts";

Deno.test("[unrefOp] unref'ing invalid ops does not have effects", async () => {
  const [statusCode, _] = await execCode(`
    Deno.core.unrefOp(-1);
    setTimeout(() => { throw new Error() }, 10)
  `);
  // Invalid unrefOp call doesn't affect exit condition of event loop
  assertNotEquals(statusCode, 0);
});