relativeto-string-invalid.js (656B)
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.duration.compare 7 description: RangeError thrown if relativeTo is a string with the wrong format, before early return 8 features: [Temporal] 9 ---*/ 10 11 ['bad string', '15:30:45.123456', 'iso8601', 'UTC', 'P1YT1H'].forEach((relativeTo) => { 12 const duration = new Temporal.Duration(0, 1); 13 assert.throws(RangeError, () => Temporal.Duration.compare(duration, duration, { relativeTo })); 14 }); 15 16 reportCompare(0, 0);