blob: 2cb25eca98b9ed2bbdcff769794814dda28b0817 [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.plaintime.prototype.round
description: Objects of a subclass are never created as return values.
includes: [temporalHelpers.js]
features: [Temporal]
---*/
TemporalHelpers.checkSubclassingIgnored(
Temporal.PlainTime,
[12, 34, 56, 987, 654, 321],
"round",
[{ smallestUnit: 'second' }],
(result) => TemporalHelpers.assertPlainTime(result, 12, 34, 57, 0, 0, 0),
);