mirror of https://github.com/tc39/test262.git
28 lines
1.0 KiB
JavaScript
28 lines
1.0 KiB
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.zoneddatetime.from
|
|
description: The receiver is never called when calling from()
|
|
includes: [temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
TemporalHelpers.checkSubclassingIgnoredStatic(
|
|
Temporal.ZonedDateTime,
|
|
"from",
|
|
["2000-01-01T00:00:00.00000001+00:00[UTC]"],
|
|
(result) => {
|
|
assert.sameValue(result.epochNanoseconds, 946684800_000_000_010n, "epochNanoseconds result");
|
|
assert.sameValue(result.year, 2000, "year result");
|
|
assert.sameValue(result.month, 1, "month result");
|
|
assert.sameValue(result.day, 1, "day result");
|
|
assert.sameValue(result.hour, 0, "hour result");
|
|
assert.sameValue(result.minute, 0, "minute result");
|
|
assert.sameValue(result.second, 0, "second result");
|
|
assert.sameValue(result.millisecond, 0, "millisecond result");
|
|
assert.sameValue(result.microsecond, 0, "microsecond result");
|
|
assert.sameValue(result.nanosecond, 10, "nanosecond result");
|
|
},
|
|
);
|