Add test to validate fix to proposal-temporal#2383

The Temporal polyfill had an infinite loop for non-ISO calendars
when Calendar.p.dateUntil was called to calculate the duration
between two identical dates. This test validates that PT0S is returned
in that case.
This commit is contained in:
Justin Grant 2023-04-01 23:18:59 -07:00 committed by Philip Chimento
parent be0abd93cd
commit aed56d9fa6
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: The duration from a date to itself is a zero duration (PT0S)
esid: sec-temporal.calendar.prototype.dateuntil
features: [Temporal]
---*/
const instance = new Temporal.Calendar("gregory");
const date = new Temporal.PlainDate(2001, 6, 3);
['year', 'month', 'week', 'day'].forEach((largestUnit) => {
const result = instance.dateUntil(date, date, { largestUnit });
assert.sameValue(result.toString(), 'PT0S');
});