test262/test/built-ins/Temporal/Instant/fromEpochMicroseconds/subclassing-ignored.js

19 lines
521 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.fromepochmicroseconds
description: The receiver is never called by fromEpochMicroseconds()
includes: [temporalHelpers.js]
features: [Temporal]
---*/
TemporalHelpers.checkSubclassingIgnoredStatic(
Temporal.Instant,
"fromEpochMicroseconds",
[10n],
(result) => {
assert.sameValue(result.epochNanoseconds, 10_000n, "epochNanoseconds result");
},
);