Bug 1764717 - Part 14: Use findErrorMessage in checkMessageStack. r=nchevobbe

Differential Revision: https://phabricator.services.mozilla.com/D147034
This commit is contained in:
Tooru Fujisawa 2022-05-24 10:06:03 +00:00
Родитель d015a45575
Коммит 6b71ed8c44
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1650,7 +1650,7 @@ async function checkConsoleOutputForWarningGroup(hud, expectedMessages) {
async function checkMessageStack(hud, text, expectedFrameLines) {
info(`Checking message stack for "${text}"`);
const msgNode = await waitFor(
() => findMessage(hud, text),
() => findErrorMessage(hud, text),
`Couln't find message including "${text}"`
);
ok(!msgNode.classList.contains("open"), `Error logged not expanded`);