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