it("returns the first int value that is truthy", async (cb) => {
            expect(await orInts(0, 10)).toBe(0 || 10);
            expect(await orInts(5, 10)).toBe(5 || 10);
            expect(await orInts(0, 0)).toBe(0 || 0);
            cb();