Skip to content

Commit

Permalink
Merge branch 'eui-theme/borealis' of https://github.com/elastic/eui i…
Browse files Browse the repository at this point in the history
…nto eui-theme/borealis
  • Loading branch information
ek-so committed Jan 7, 2025
2 parents 615e56b + d1e1f1c commit 31f3739
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 31f3739

Please sign in to comment.