Files
2023-03-28 18:10:00 +02:00

10 строки
352 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export function verifyDraftIcon(name, isVisible) {
cy.uiGetLhsSection('CHANNELS').find(`#sidebarItem_${name}`).
should('be.visible').
findByTestId('draftIcon').
should(isVisible ? 'be.visible' : 'not.exist');
}