blob: cf3667adff100e53868ba672761d24a5de2a9570 [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: The "round" property of Temporal.PlainTime.prototype
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(
typeof Temporal.PlainTime.prototype.round,
"function",
"`typeof PlainTime.prototype.round` is `function`"
);
verifyProperty(Temporal.PlainTime.prototype, "round", {
writable: true,
enumerable: false,
configurable: true,
});