mirror of https://github.com/tc39/test262.git
23 lines
679 B
JavaScript
23 lines
679 B
JavaScript
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-temporal.plainmonthday.from
|
|
description: Annotation keys are lowercase-only
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const invalidStrings = [
|
|
["1970-01-01T00:00[U-CA=iso8601]", "invalid capitalized key"],
|
|
["1970-01-01T00:00[u-CA=iso8601]", "invalid partially-capitalized key"],
|
|
["1970-01-01T00:00[FOO=bar]", "invalid capitalized unrecognized key"],
|
|
];
|
|
|
|
invalidStrings.forEach(([arg, descr]) => {
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainMonthDay.from(arg),
|
|
`annotation keys must be lowercase: ${arg} - ${descr}`
|
|
);
|
|
});
|