describe("x--", () => {
        it("returns the int value and subtracts one from the variable", async (cb) => {
            const returnValue = await intMinusMinus(10);

            expect(returnValue.value).toBe(9);