Этот коммит содержится в:
Saturnino Abril
2023-06-14 07:56:23 +08:00
коммит произвёл GitHub
родитель bc66807acc
Коммит 16ad573979
13 изменённых файлов: 152 добавлений и 137 удалений

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

@@ -32,7 +32,7 @@ describe('New Channel modal with Boards enabled', () => {
isPrivate: false,
purpose: '',
name: channelName,
createBoard: true,
createBoard: 'Roadmap',
}).then(() => {
// * Verify that new channel is in the sidebar and is active
cy.url().should('include', `/${testTeam.name}/channels/test-channel`);
@@ -42,7 +42,7 @@ describe('New Channel modal with Boards enabled', () => {
// * Verify the board is created - check the message sent
cy.waitUntil(() => cy.getLastPost().then((el) => {
const postedMessageEl = el.find('.post-message__text > p')[0];
return Boolean(postedMessageEl && postedMessageEl.textContent.includes('created the board'));
return Boolean(postedMessageEl && postedMessageEl.textContent.includes('linked the board'));
}));
});
});