AAE-35694 Update section-start-form with Sections in Row (#10947)

This commit is contained in:
Anna Karwatka 2025-06-17 06:15:00 +02:00 committed by GitHub
parent 22b62804d5
commit a4072aca74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ describe('DateFnsUtils', () => {
it('should parse datetime', () => { it('should parse datetime', () => {
const parsed = DateFnsUtils.parseDate('09-02-9999 09:10 AM', 'dd-MM-yyyy hh:mm aa'); const parsed = DateFnsUtils.parseDate('09-02-9999 09:10 AM', 'dd-MM-yyyy hh:mm aa');
expect(isValid(parsed)); expect(isValid(parsed));
expect(parsed.toISOString()).toBe('9999-02-09T09:10:00.000Z'); expect(parsed.toISOString()).toBe('9999-02-09T09:10:00.000Z');
}); });