describe("break", () => {
        it("breaks out of the labeled block", async (cb) => {
            expect(await breakToLabelWithReturnInNormalEnd()).toBe(1);
            cb();
        });