Backed out changeset 5c7de47bcacb (bug 1927094) for causing Bug 1928689. a=backout
[gecko.git] / js / src / tests / test262 / built-ins / Temporal / Duration / milliseconds-undefined.js
blobcddc1ee8735d473bc878cebe96fc8d5a33bfdd06
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.
5 /*---
6 esid: sec-temporal.duration
7 description: Undefined arguments should be treated as zero.
8 includes: [temporalHelpers.js]
9 features: [Temporal]
10 ---*/
12 const args = [1, 1, 1, 1, 1, 1, 1];
14 const explicit = new Temporal.Duration(...args, undefined);
15 TemporalHelpers.assertDuration(explicit, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, "explicit");
17 const implicit = new Temporal.Duration(...args);
18 TemporalHelpers.assertDuration(implicit, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, "implicit");
20 reportCompare(0, 0);