mirror of https://github.com/tc39/test262.git
19 lines
524 B
JavaScript
19 lines
524 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.instant.fromepochmilliseconds
|
|
description: The receiver is never called by fromEpochMilliseconds()
|
|
includes: [temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
TemporalHelpers.checkSubclassingIgnoredStatic(
|
|
Temporal.Instant,
|
|
"fromEpochMilliseconds",
|
|
[10],
|
|
(result) => {
|
|
assert.sameValue(result.epochNanoseconds, 10_000_000n, "epochNanoseconds result");
|
|
},
|
|
);
|