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

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