blob: 5c19ac969ac16fabc2d04663f3c6170b3133b6c7 [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.until
description: Leap second is a valid ISO string for Instant
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const instance = new Temporal.Instant(1_483_228_799_000_000_000n);
const arg = "2016-12-31T23:59:60Z";
const result = instance.until(arg);
TemporalHelpers.assertDuration(
result,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
"leap second is a valid ISO string for Instant"
);