mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-11 06:44:24 -05:00
7 lines
284 B
JavaScript
7 lines
284 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
Cypress.Commands.add('findByRoleExtended', (role, {name}) => {
|
|
const re = RegExp(name, 'i');
|
|
return cy.findByRole(role, {name: re}).should('have.text', name);
|
|
});
|