Intl.ListFormat: Test the order of properties in the result of resolvedOptions().

This commit is contained in:
Ms2ger 2018-10-24 16:57:21 +02:00 committed by Rick Waldron
parent b8b93ec421
commit 0dcec72e34
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// Copyright 2018 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-Intl.ListFormat.prototype.resolvedOptions
description: Verifies the property order for the object returned by resolvedOptions().
includes: [compareArray.js]
features: [Intl.ListFormat]
---*/
const options = new Intl.ListFormat().resolvedOptions();
const expected = [
"locale",
"type",
"style",
];
assert.compareArray(Object.getOwnPropertyNames(options), expected);