Adjust single tracking bug filing to include other suites (#7425)

This commit is contained in:
Joel Maher 2022-04-25 06:31:58 -07:00 коммит произвёл GitHub
Родитель ff143914a5
Коммит e255838307
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -158,7 +158,11 @@ export class BugFilerClass extends React.Component {
checkedLogLinks.set('Reftest URL', reftestUrl);
}
if (jobGroupName === 'Xpcshell tests') {
const jg = jobGroupName.toLowerCase();
if (
jg.includes('xpcshell') ||
jg.includes('mochitests without e10s or fission') // chrome, a11y, gpu-c
) {
const isTimeout = [/timeout/i, /timed out/].some((regexp) =>
regexp.test(summaryString),
);