it('should close using testing lib', () => {
    cy.get('button').contains('Type: Success').click();
    cy.get('.ngx-notification.ngx-notification-success').ngxClose();
    cy.get('.ngx-notification.ngx-notification-success').should('not.exist');
  });