it("takes the if branch if the number condition value is not equal to zero", async (cb) => {
        expect(await ifWithNumberCondition(1, 10, 20)).toBe(10);
        expect(await ifWithNumberCondition(0.01, 10, 20)).toBe(10);
        expect(await ifWithNumberCondition(-1, 10, 20)).toBe(10);
        cb();