describe("-=", () => {
        it("subtracts y from x and returns the difference of the two integers", async function(cb) {
            expect(await subtractEqualsInts(3, 4)).toBe(3 - 4);
            cb();
        });