You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test/intl402/DurationFormat/constructor-option-read-order.js: localeMatcher is read before numberingSystem but isn't in resolvedOptions(). Probably better to use a Proxy that pushes all Get operations to the array, rather than just the ones in resolvedOptions().
test/intl402/DurationFormat/prototype/resolvedOptions/return-keys-order-default.js: fractionalSeconds is added last if not undefined. Consider testing the order again when constructing the object with e.g. new Intl.DurationFormat('en', { fractionalDigits: 0 }).
Address comments from #3912.
test/intl402/DurationFormat/constructor-option-read-order.js
:localeMatcher
is read beforenumberingSystem
but isn't inresolvedOptions()
. Probably better to use aProxy
that pushes all Get operations to the array, rather than just the ones inresolvedOptions()
.test/intl402/DurationFormat/prototype/resolvedOptions/return-keys-order-default.js
:fractionalSeconds
is added last if notundefined
. Consider testing the order again when constructing the object with e.g.new Intl.DurationFormat('en', { fractionalDigits: 0 })
.cc @FrankYFTang
The text was updated successfully, but these errors were encountered: