[CLD-8961] Fix typo in trial license error message (#30681)

Этот коммит содержится в:
Nick Misasi
2025-04-10 11:47:55 -04:00
коммит произвёл GitHub
родитель b348527889
Коммит 14426af461
3 изменённых файлов: 8 добавлений и 3 удалений

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

@@ -131,7 +131,12 @@ export default class ChannelsCenterView {
await this.postBoxIndicator.isVisible();
await this.scheduledDraftChannelIcon.isVisible();
const messageLocator = this.scheduledDraftChannelInfoMessage.first();
await expect(messageLocator).toContainText('Message scheduled for');
try {
await expect(messageLocator).toContainText('Message scheduled for');
} catch (error) {
// First assertion failed, trying fallback
await expect(messageLocator).toContainText('You have one scheduled message.');
}
}
async clickOnLastEditedPost(postID: string | null) {