blob: d33ff7c2a910d3fd2ad6181eaccd7754d318970e [file] [log] [blame]
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.prototype.until
description: The "until" property of Temporal.PlainYearMonth.prototype
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(
typeof Temporal.PlainYearMonth.prototype.until,
"function",
"`typeof PlainYearMonth.prototype.until` is `function`"
);
verifyProperty(Temporal.PlainYearMonth.prototype, "until", {
writable: true,
enumerable: false,
configurable: true,
});