one-of-era-erayear-undefined.js (732B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2023 Igalia, S.L. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.plaindate.from 7 description: > 8 Throw a TypeError if only one of era/eraYear fields is present (for calendar 9 using eras) 10 features: [Temporal, Intl.Era-monthcode] 11 ---*/ 12 13 const base = { year: 2000, month: 5, day: 2, era: "ce", calendar: "gregory" }; 14 assert.throws(TypeError, () => Temporal.PlainDate.from(base)); 15 16 const base2 = { year: 2000, month: 5, day: 2, eraYear: 1, calendar: "gregory" }; 17 assert.throws(TypeError, () => Temporal.PlainDate.from(base2)); 18 19 reportCompare(0, 0);