test262/test/built-ins/Temporal/PlainMonthDay/from/subclassing-ignored.js

17 lines
461 B
JavaScript

// 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.plainmonthday.from
description: The receiver is never called when calling from()
includes: [temporalHelpers.js]
features: [Temporal]
---*/
TemporalHelpers.checkSubclassingIgnoredStatic(
Temporal.PlainMonthDay,
"from",
["05-02"],
(result) => TemporalHelpers.assertPlainMonthDay(result, "M05", 2),
);