bdd75c4b55
--- Conflict resolution: Trivial (package.json package-lock.json) Done differently: Removed typescript types. (cherry picked from commit ce4d909bd693fe903761eb835f7661e476a937ca)
21 lines
559 B
JavaScript
21 lines
559 B
JavaScript
import {toAbsoluteLocaleDate} from './absolute-date.js';
|
|
|
|
test('toAbsoluteLocaleDate', () => {
|
|
expect(toAbsoluteLocaleDate('2024-03-15', 'en-US', {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric',
|
|
})).toEqual('March 15, 2024');
|
|
|
|
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');
|
|
});
|