describe("number condition", () => {
        it("returns the true value if the condition is truthy", async (cb) => {
            expect(await numberCondition(2.3, 1, 2)).toBe(1);
            cb();
        });