summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Temporal/ZonedDateTime/prototype/withPlainTime/leap-second.js
blob: 79685eb7caeb9eab0e331a83ac84ad61c5aa7b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
// 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.zoneddatetime.prototype.withplaintime
description: Leap second is a valid ISO string for PlainTime
features: [Temporal]
---*/

const instance = new Temporal.ZonedDateTime(1_000_000_000_000_000_000n, "UTC");

let arg = "2016-12-31T23:59:60";
const result1 = instance.withPlainTime(arg);
assert.sameValue(
  result1.epochNanoseconds,
  1000079999_000_000_000n,
  "leap second is a valid ISO string for PlainTime"
);

arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
const result2 = instance.withPlainTime(arg);
assert.sameValue(
  result2.epochNanoseconds,
  1000079999_000_000_000n,
  "second: 60 is ignored in property bag for PlainTime"
);

reportCompare(0, 0);