1 2 3 4 5 6 7 8 9 10
import { test } from "bun:test"; import { setTimeout } from "node:timers"; test("unref is possible", () => { const timer = setTimeout(() => { throw new Error("should not be called"); }, 1000); timer.unref(); clearTimeout(timer); });