it("should show/hide correct alert", () => {
    const uuid = "correct-alert";
    expect(api.hasModal(uuid)).toBe(false);
    expect($(".ui-dialog").length).toBe(0);
    const showOptions: IShowModal = { uuid, type: "alert", style: "correct" };