tests(smoke): fix failureReasonsMask flake (#11791)

This commit is contained in:
Paul Irish 2020-12-08 20:16:19 -08:00 коммит произвёл GitHub
Родитель 80b9db0e84
Коммит 0e8e01d501
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -240,7 +240,10 @@ module.exports = [
animations: [
{
name: 'anim',
failureReasonsMask: 8224,
// The animation reliably gets kUnsupportedCSSProperty (1 << 13) === 8192.
// Sometimes it also gets kTargetHasInvalidCompositingState (1 << 5) == 32. Together they sum to 8224.
// Both are fine for our purposes.
failureReasonsMask: '8192 +/- 32',
unsupportedProperties: ['background-color'],
},
],