MM-40414: Add empty state icons (#25282)

Automatic Merge
Этот коммит содержится в:
Ashish Dhama
2023-11-20 09:30:14 +05:30
коммит произвёл GitHub
родитель 8bd603eb12
Коммит a9a879d00d
57 изменённых файлов: 809 добавлений и 151 удалений

Просмотреть файл

@@ -73,21 +73,21 @@ describe('Bot tags', () => {
rhsPostHasBotBadge(postId);
});
it('MM-T1833 BOT tag is visible in Pinned Posts', () => {
it('MM-T1833 BOT tag is visible in Pinned Messages', () => {
// # Open pinned posts
cy.uiGetChannelPinButton().click();
// * Verify bot badge
cy.get('.sidebar--right__title').should('contain.text', 'Pinned Posts');
cy.get('.sidebar--right__title').should('contain.text', 'Pinned messages');
rhsPostHasBotBadge(postId);
});
it('MM-T3659 BOT tag is visible in Saved Posts', () => {
it('MM-T3659 BOT tag is visible in Saved Messages', () => {
// # Open saved posts
cy.uiGetSavedPostButton().click();
// * Verify bot badge
cy.get('.sidebar--right__title').should('contain.text', 'Saved Posts');
cy.get('.sidebar--right__title').should('contain.text', 'Saved messages');
rhsPostHasBotBadge(postId);
});
});