rm carriage returns from terminal buffer string in smoke test (#224525)

This commit is contained in:
Megan Rogge 2024-08-01 14:40:21 -07:00 коммит произвёл GitHub
Родитель 0da24e0fe7
Коммит 3cf2a00cef
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -75,8 +75,8 @@ export function setup(options?: { skipSuite: boolean }) {
await terminal.assertTerminalGroups([
[{ name }]
]);
// There can be line wrapping, so remove newlines #216464
await terminal.waitForTerminalText(buffer => buffer.some(e => e.replaceAll('\n', '').includes('terminal_test_content')));
// There can be line wrapping, so remove newlines and carriage returns #216464
await terminal.waitForTerminalText(buffer => buffer.some(e => e.replaceAll(/[\r\n]/g, '').includes('terminal_test_content')));
});
});
});