describe("++x", () => {
        it("returns the value of the variable and adds one to the int variable", async (cb) => {
            const returnValue = await intPlusPlus(10);

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