blob: 547cbcfe8593a7e28ae8b5f37e147259d3d98b89 [file] [log] [blame]
// Copyright (C) 2022 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: Leap second is a valid ISO string for Instant
features: [Temporal]
---*/
const instance = new Temporal.Instant(1_483_228_799_000_000_000n);
const arg = "2016-12-31T23:59:60Z";
const result = instance.equals(arg);
assert.sameValue(
result,
true,
"leap second is a valid ISO string for Instant"
);