Skip to content

Commit

Permalink
Merge branch 'main' into ekso-beta-badge
Browse files Browse the repository at this point in the history
  • Loading branch information
mgadewoll authored Jan 7, 2025
2 parents 9886cb7 + c8522d9 commit 2ffcf43
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,17 @@ describe('EuiAbsoluteTab', () => {
locale: LocaleSpecifier;
dateString: string;
}>([
{ locale: 'en', dateString: 'Mon Jan 1st' },
{ locale: 'zh-CN', dateString: '周一 1月 1日' },
{ locale: 'ja-JP', dateString: '月 1月 1日' },
{ locale: 'fr-FR', dateString: 'lun. janv. 1er' },
{ locale: 'en', dateString: 'Mon Jan 2024 1st' },
{ locale: 'zh-CN', dateString: '周一 1月 2024 1日' },
{ locale: 'ja-JP', dateString: '月 1月 2024 1日' },
{ locale: 'fr-FR', dateString: 'lun. janv. 2024 1er' },
])('%p', ({ locale, dateString }) => {
const { getByTestSubject } = render(
<EuiAbsoluteTab {...props} dateFormat="ddd MMM Do" locale={locale} />
<EuiAbsoluteTab
{...props}
dateFormat="ddd MMM YYYY Do"
locale={locale}
/>
);
const input = getByTestSubject('superDatePickerAbsoluteDateInput');

Expand Down

0 comments on commit 2ffcf43

Please sign in to comment.