blob: 64ad7c4966abf472cd6e19804d8d1c80ce694c20 [file] [log] [blame]
// 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.prototype.tostring
description: Type conversions for roundingMode option
includes: [compareArray.js, temporalHelpers.js]
features: [Temporal]
---*/
const duration = new Temporal.Duration(0, 0, 0, 0, 12, 34, 56, 123, 987, 500);
TemporalHelpers.checkStringOptionWrongType("roundingMode", "trunc",
(roundingMode) => duration.toString({ smallestUnit: "microsecond", roundingMode }),
(result, descr) => assert.sameValue(result, "PT12H34M56.123987S", descr),
);