mirror of
https://github.com/tc39/test262.git
synced 2025-09-29 21:18:44 +02:00
27 lines
881 B
JavaScript
27 lines
881 B
JavaScript
// Copyright 2018 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-Intl.RelativeTimeFormat
|
|
description: Checks handling of non-object option arguments to the RelativeTimeFormat constructor.
|
|
info: |
|
|
InitializeRelativeTimeFormat (relativeTimeFormat, locales, options)
|
|
features: [Intl.RelativeTimeFormat]
|
|
---*/
|
|
|
|
const optionsArguments = [
|
|
true,
|
|
"test",
|
|
7,
|
|
Symbol(),
|
|
];
|
|
|
|
for (const options of optionsArguments) {
|
|
const rtf = new Intl.RelativeTimeFormat([], options);
|
|
const resolvedOptions = rtf.resolvedOptions();
|
|
assert.sameValue(resolvedOptions.style, "long",
|
|
`options argument ${String(options)} should yield the correct value for "style"`);
|
|
assert.sameValue(resolvedOptions.numeric, "always",
|
|
`options argument ${String(options)} should yield the correct value for "numeric"`);
|
|
}
|