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

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