subclassing-ignored.js (644B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2021 Igalia, S.L. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.instant.fromepochmilliseconds 7 description: The receiver is never called by fromEpochMilliseconds() 8 includes: [temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 TemporalHelpers.checkSubclassingIgnoredStatic( 13 Temporal.Instant, 14 "fromEpochMilliseconds", 15 [10], 16 (result) => { 17 assert.sameValue(result.epochNanoseconds, 10_000_000n, "epochNanoseconds result"); 18 }, 19 ); 20 21 reportCompare(0, 0);