argument-number.js (937B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 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.plaintime.compare 7 description: A number is invalid in place of an ISO string for Temporal.PlainTime 8 features: [Temporal] 9 ---*/ 10 11 const numbers = [ 12 1, 13 -123456.987654321, 14 1234567, 15 123456.9876543219, 16 ]; 17 18 for (const arg of numbers) { 19 assert.throws( 20 TypeError, 21 () => Temporal.PlainTime.compare(arg, new Temporal.PlainTime(12, 34, 56, 987, 654, 321)), 22 `A number (${arg}) is not a valid ISO string for PlainTime (first argument)` 23 ); 24 assert.throws( 25 TypeError, 26 () => Temporal.PlainTime.compare(new Temporal.PlainTime(12, 34, 56, 987, 654, 321), arg), 27 `A number (${arg}) is not a valid ISO string for PlainTime (second argument)` 28 ); 29 } 30 31 reportCompare(0, 0);