argument-string-minus-sign.js (825B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2024 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.compare 7 description: Non-ASCII minus sign is not acceptable 8 features: [Temporal] 9 ---*/ 10 11 const invalidStrings = [ 12 "1976-11-18T15:23:30.12\u221202:00", 13 "\u2212009999-11-18T15:23:30.12", 14 ]; 15 16 const epoch = new Temporal.Instant(0n); 17 invalidStrings.forEach((arg) => { 18 assert.throws( 19 RangeError, 20 () => Temporal.Instant.compare(arg, epoch), 21 `variant minus sign: ${arg} (first argument)` 22 ); 23 24 assert.throws( 25 RangeError, 26 () => Temporal.Instant.compare(epoch, arg), 27 `variant minus sign: ${arg} (second argument)` 28 ); 29 }); 30 31 reportCompare(0, 0);