@@ -157,12 +157,6 @@ describe('intl', () => {
157
157
expect ( intl . renderMonthAndYear ( 'ja-JP' , date ) ) . toBe ( '2023年6月' ) ;
158
158
} ) ;
159
159
160
- test ( 'renders month and year in Arabic' , ( ) => {
161
- const date = new Date ( '2023-06-15' ) ;
162
- //todo confirm it shouldn't be 'يونيو ٢٠٢٣'
163
- expect ( intl . renderMonthAndYear ( 'ar-SA' , date ) ) . toBe ( 'ذو القعدة ١٤٤٤ هـ' ) ;
164
- } ) ;
165
-
166
160
test ( 'handles different months' , ( ) => {
167
161
expect ( intl . renderMonthAndYear ( 'en-US' , new Date ( '2023-01-01' ) ) ) . toBe ( 'January 2023' ) ;
168
162
expect ( intl . renderMonthAndYear ( 'en-US' , new Date ( '2023-12-31' ) ) ) . toBe ( 'December 2023' ) ;
@@ -209,12 +203,6 @@ describe('intl', () => {
209
203
expect ( intl . renderYear ( 'ja-JP' , date ) ) . toBe ( '2023年' ) ;
210
204
} ) ;
211
205
212
- test ( 'renders year in Arabic' , ( ) => {
213
- const date = new Date ( '2023-06-15' ) ;
214
- //todo confirm not '٢٠٢٣'
215
- expect ( intl . renderYear ( 'ar-SA' , date ) ) . toBe ( '١٤٤٤ هـ' ) ;
216
- } ) ;
217
-
218
206
test ( 'handles different years' , ( ) => {
219
207
expect ( intl . renderYear ( 'en-US' , new Date ( '2020-01-01' ) ) ) . toBe ( '2020' ) ;
220
208
expect ( intl . renderYear ( 'en-US' , new Date ( '2025-12-31' ) ) ) . toBe ( '2025' ) ;
0 commit comments