// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally // Copyright (C) 2022 Igalia, S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-get-temporal.plaindatetime.prototype.weekofyear description: Checking week of year for a "normal" case (non-undefined, non-boundary case, etc.) features: [Temporal] ---*/ const calendar = Temporal.Calendar.from("iso8601"); const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar); assert.sameValue(datetime.weekOfYear, 47, "check week of year information"); reportCompare(0, 0);