blob: 05d79915b46bc3f4ae4464b27a662f9968bbbc39 [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: toString() produces a fractional part of the correct length
features: [Temporal]
---*/
const { Duration } = Temporal;
const durationString = 'PT0.084000159S';
const duration = Duration.from(durationString);
const precisionString = duration.toString({
smallestUnit: 'milliseconds'
});
assert.sameValue(durationString, duration.toString());
assert.sameValue(precisionString, "PT0.084S");