mirror of https://github.com/tc39/test262.git
20 lines
550 B
JavaScript
20 lines
550 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.calendar.from
|
|
description: The receiver is never called when calling from()
|
|
includes: [temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
TemporalHelpers.checkSubclassingIgnoredStatic(
|
|
Temporal.Calendar,
|
|
"from",
|
|
["iso8601"],
|
|
(result) => {
|
|
assert.sameValue(result.id, "iso8601", "id property of result");
|
|
assert.sameValue(result.toString(), "iso8601", "toString() of result");
|
|
},
|
|
);
|