describe("break", () => {
        it("breaks out of the loop for a break statement", async (cb) => {
            expect(await whileBreak()).toBe(3);
            cb();
        });