tests(smoke): fix failureReasonsMask flake (#11791)
This commit is contained in:
Родитель
80b9db0e84
Коммит
0e8e01d501
|
@ -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'],
|
||||
},
|
||||
],
|
||||
|
|
Загрузка…
Ссылка в новой задаче