[PORT] Fix absolute-date (gitea#32375)
--- Conflict resolution: Trivial (package.json package-lock.json) Done differently: Removed typescript types. (cherry picked from commit ce4d909bd693fe903761eb835f7661e476a937ca)
This commit is contained in:
parent
20c0a2a381
commit
bdd75c4b55
4 changed files with 21 additions and 34 deletions
|
@ -7,9 +7,15 @@ test('toAbsoluteLocaleDate', () => {
|
|||
day: 'numeric',
|
||||
})).toEqual('March 15, 2024');
|
||||
|
||||
expect(toAbsoluteLocaleDate('2024-03-15', 'de-DE', {
|
||||
expect(toAbsoluteLocaleDate('2024-03-15T01:02:03', 'de-DE', {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric',
|
||||
})).toEqual('15. März 2024');
|
||||
|
||||
expect(toAbsoluteLocaleDate('12345-03-15 01:02:03', '', {
|
||||
year: 'numeric',
|
||||
month: 'short',
|
||||
day: 'numeric',
|
||||
})).toEqual('Mar 15, 12345');
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue