blob: c34110ba215ff9e02808e06bf01d327bed8b4a02 [file] [log] [blame]
// Copyright (C) 2020 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.instant.prototype.equals
description: The "equals" property of Temporal.Instant.prototype
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(
typeof Temporal.Instant.prototype.equals,
"function",
"`typeof Instant.prototype.equals` is `function`"
);
verifyProperty(Temporal.Instant.prototype, "equals", {
writable: true,
enumerable: false,
configurable: true,
});