2021-09-29 21:48:22 +02:00
|
|
|
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-temporal.duration
|
|
|
|
description: Undefined arguments should be treated as zero.
|
2022-03-08 17:42:20 +01:00
|
|
|
includes: [temporalHelpers.js]
|
2021-09-29 21:48:22 +02:00
|
|
|
features: [Temporal]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
const args = [1, 1, 1, 1, 1, 1, 1];
|
|
|
|
|
|
|
|
const explicit = new Temporal.Duration(...args, undefined);
|
2022-03-08 17:42:20 +01:00
|
|
|
TemporalHelpers.assertDuration(explicit, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, "explicit");
|
2021-09-29 21:48:22 +02:00
|
|
|
|
|
|
|
const implicit = new Temporal.Duration(...args);
|
2022-03-08 17:42:20 +01:00
|
|
|
TemporalHelpers.assertDuration(implicit, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, "implicit");
|