mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-15 22:12:19 -04:00
9 lines
427 B
JavaScript
9 lines
427 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import * as TIMEOUTS from '../../fixtures/timeouts';
|
|
|
|
Cypress.Commands.add('uiCloseModal', (headerLabel) => {
|
|
// # Close modal with modal label
|
|
cy.get('#genericModalLabel', {timeout: TIMEOUTS.HALF_MIN}).should('have.text', headerLabel).parents().find('.modal-dialog').findByLabelText('Close').click();
|
|
});
|