Bug 1576501 - Ignore error when loading the Migration Wizard in automation. r=MattN

Differential Revision: https://phabricator.services.mozilla.com/D48401

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jared Wein 2019-10-09 01:21:47 +00:00
Родитель 69b5240b0b
Коммит 0324279a0a
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -95,6 +95,14 @@ add_task(async function setup() {
// Ignore errors from browser-sync.js.
return;
}
if (
msg.errorMessage.includes(
"ReferenceError: MigrationWizard is not defined"
)
) {
// todo(Bug 1587237): Ignore error when loading the Migration Wizard in automation.
return;
}
if (msg.errorMessage.includes(EXPECTED_ERROR_MESSAGE)) {
return;
}