options-undefined.js (721B)
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: Verify that undefined options are handled correctly. 8 features: [Temporal] 9 ---*/ 10 11 const duration1 = new Temporal.Duration(1); 12 const duration2 = new Temporal.Duration(0, 12); 13 assert.throws(RangeError, () => Temporal.Duration.compare(duration1, duration2), "default relativeTo is undefined"); 14 assert.throws(RangeError, () => Temporal.Duration.compare(duration1, duration2, undefined), "default relativeTo is undefined"); 15 16 reportCompare(0, 0);