blob: 9cda20d6fe0caa874a41c382755ba001f4fde073 [file] [log] [blame]
// 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.fromepochnanoseconds
description: The receiver is never called by fromEpochNanoseconds()
includes: [temporalHelpers.js]
features: [Temporal]
---*/
TemporalHelpers.checkSubclassingIgnoredStatic(
Temporal.Instant,
"fromEpochNanoseconds",
[10n],
(result) => {
assert.sameValue(result.epochNanoseconds, 10n, "epochNanoseconds result");
},
);