diff --git a/packages/app-tests/e2e/document-flow/stepper-component.spec.ts b/packages/app-tests/e2e/document-flow/stepper-component.spec.ts index 06251175e..59d80d1b6 100644 --- a/packages/app-tests/e2e/document-flow/stepper-component.spec.ts +++ b/packages/app-tests/e2e/document-flow/stepper-component.spec.ts @@ -504,7 +504,7 @@ test('[DOCUMENT_FLOW]: should be able to sign a document with custom date', asyn }, }); - const insertedDate = DateTime.fromFormat(field?.customText ?? '', 'yyyy-MM-dd hh:mm a'); + const insertedDate = DateTime.fromFormat(field?.customText ?? '', 'yyyy-MM-dd HH:mm'); expect(Math.abs(insertedDate.diff(now).minutes)).toBeLessThanOrEqual(1); diff --git a/packages/app-tests/e2e/organisations/organisation-team-preferences.spec.ts b/packages/app-tests/e2e/organisations/organisation-team-preferences.spec.ts index 90cb6ae34..c946062ec 100644 --- a/packages/app-tests/e2e/organisations/organisation-team-preferences.spec.ts +++ b/packages/app-tests/e2e/organisations/organisation-team-preferences.spec.ts @@ -30,8 +30,8 @@ test('[ORGANISATIONS]: manage document preferences', async ({ page }) => { await page.getByRole('option', { name: 'Australia/Perth' }).click(); // Set default date - await page.getByRole('combobox').filter({ hasText: 'yyyy-MM-dd hh:mm a' }).click(); - await page.getByRole('option', { name: 'DD/MM/YYYY' }).click(); + await page.getByRole('combobox').filter({ hasText: 'yyyy-MM-dd HH:mm' }).click(); + await page.getByRole('option', { name: 'DD/MM/YYYY', exact: true }).click(); await page.getByTestId('signature-types-trigger').click(); await page.getByRole('option', { name: 'Draw' }).click(); @@ -51,7 +51,7 @@ test('[ORGANISATIONS]: manage document preferences', async ({ page }) => { expect(teamSettings.documentVisibility).toEqual(DocumentVisibility.MANAGER_AND_ABOVE); expect(teamSettings.documentLanguage).toEqual('de'); expect(teamSettings.documentTimezone).toEqual('Australia/Perth'); - expect(teamSettings.documentDateFormat).toEqual('dd/MM/yyyy hh:mm a'); + expect(teamSettings.documentDateFormat).toEqual('dd/MM/yyyy'); expect(teamSettings.includeSenderDetails).toEqual(false); expect(teamSettings.includeSigningCertificate).toEqual(false); expect(teamSettings.typedSignatureEnabled).toEqual(true); @@ -72,7 +72,7 @@ test('[ORGANISATIONS]: manage document preferences', async ({ page }) => { // Override team date format settings await page.getByTestId('document-date-format-trigger').click(); - await page.getByRole('option', { name: 'MM/DD/YYYY' }).click(); + await page.getByRole('option', { name: 'MM/DD/YYYY', exact: true }).click(); await page.getByRole('button', { name: 'Update' }).first().click(); await expect(page.getByText('Your document preferences have been updated').first()).toBeVisible(); @@ -85,7 +85,7 @@ test('[ORGANISATIONS]: manage document preferences', async ({ page }) => { expect(updatedTeamSettings.documentVisibility).toEqual(DocumentVisibility.EVERYONE); expect(updatedTeamSettings.documentLanguage).toEqual('pl'); expect(updatedTeamSettings.documentTimezone).toEqual('Europe/London'); - expect(updatedTeamSettings.documentDateFormat).toEqual('MM/dd/yyyy hh:mm a'); + expect(updatedTeamSettings.documentDateFormat).toEqual('MM/dd/yyyy'); expect(updatedTeamSettings.includeSenderDetails).toEqual(false); expect(updatedTeamSettings.includeSigningCertificate).toEqual(false); expect(updatedTeamSettings.typedSignatureEnabled).toEqual(true); @@ -108,7 +108,7 @@ test('[ORGANISATIONS]: manage document preferences', async ({ page }) => { expect(documentMeta.drawSignatureEnabled).toEqual(false); expect(documentMeta.language).toEqual('pl'); expect(documentMeta.timezone).toEqual('Europe/London'); - expect(documentMeta.dateFormat).toEqual('MM/dd/yyyy hh:mm a'); + expect(documentMeta.dateFormat).toEqual('MM/dd/yyyy'); }); test('[ORGANISATIONS]: manage branding preferences', async ({ page }) => { diff --git a/packages/app-tests/e2e/templates/create-document-from-template.spec.ts b/packages/app-tests/e2e/templates/create-document-from-template.spec.ts index 1db744603..acafc9274 100644 --- a/packages/app-tests/e2e/templates/create-document-from-template.spec.ts +++ b/packages/app-tests/e2e/templates/create-document-from-template.spec.ts @@ -47,8 +47,8 @@ test('[TEMPLATE]: should create a document from a template', async ({ page }) => // Set advanced options. await page.getByRole('button', { name: 'Advanced Options' }).click(); - await page.locator('button').filter({ hasText: 'YYYY-MM-DD HH:mm a' }).click(); - await page.getByLabel('DD/MM/YYYY').click(); + await page.locator('button').filter({ hasText: 'YYYY-MM-DD HH:mm' }).click(); + await page.getByLabel('DD/MM/YYYY HH:mm').click(); await page.locator('.time-zone-field').click(); await page.getByRole('option', { name: 'Etc/UTC' }).click(); @@ -96,7 +96,7 @@ test('[TEMPLATE]: should create a document from a template', async ({ page }) => expect(document.title).toEqual('TEMPLATE_TITLE'); expect(documentAuth.documentAuthOption.globalAccessAuth).toContain('ACCOUNT'); - expect(document.documentMeta?.dateFormat).toEqual('dd/MM/yyyy hh:mm a'); + expect(document.documentMeta?.dateFormat).toEqual('dd/MM/yyyy HH:mm'); expect(document.documentMeta?.message).toEqual('MESSAGE'); expect(document.documentMeta?.redirectUrl).toEqual('https://documenso.com'); expect(document.documentMeta?.subject).toEqual('SUBJECT'); @@ -150,8 +150,8 @@ test('[TEMPLATE]: should create a team document from a team template', async ({ // Set advanced options. await page.getByRole('button', { name: 'Advanced Options' }).click(); - await page.locator('button').filter({ hasText: 'YYYY-MM-DD HH:mm a' }).click(); - await page.getByLabel('DD/MM/YYYY').click(); + await page.locator('button').filter({ hasText: 'YYYY-MM-DD HH:mm' }).click(); + await page.getByLabel('DD/MM/YYYY HH:mm').click(); await page.locator('.time-zone-field').click(); await page.getByRole('option', { name: 'Etc/UTC' }).click(); @@ -200,7 +200,7 @@ test('[TEMPLATE]: should create a team document from a team template', async ({ expect(document.title).toEqual('TEMPLATE_TITLE'); expect(documentAuth.documentAuthOption.globalAccessAuth).toContain('ACCOUNT'); - expect(document.documentMeta?.dateFormat).toEqual('dd/MM/yyyy hh:mm a'); + expect(document.documentMeta?.dateFormat).toEqual('dd/MM/yyyy HH:mm'); expect(document.documentMeta?.message).toEqual('MESSAGE'); expect(document.documentMeta?.redirectUrl).toEqual('https://documenso.com'); expect(document.documentMeta?.subject).toEqual('SUBJECT');