mirror of
https://github.com/go-gitea/gitea.git
synced 2026-01-16 17:10:36 +00:00
`import.meta.env` is supported in both vitest and webpack [as of recent](https://github.com/webpack/webpack/pull/19996), so replace all previous use of `process.env` with it. Current usage is limited to test files, I've also verified it works in actual frontend code. `webpack/module` is added to typescript types which includes the definition for `import.meta.env`. I've also made the eslint globals more precise. Finally, `__webpack_public_path__` is removed from our type definitions because `webpack/module` also provides it.
27 lines
925 B
TypeScript
27 lines
925 B
TypeScript
import {toAbsoluteLocaleDate} from './absolute-date.ts';
|
|
|
|
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');
|
|
|
|
// these cases shouldn't happen
|
|
expect(toAbsoluteLocaleDate('2024-03-15 01:02:03', '', {})).toEqual('Invalid Date');
|
|
expect(toAbsoluteLocaleDate('10000-01-01', '', {})).toEqual('Invalid Date');
|
|
|
|
// test different timezone
|
|
const oldTZ = import.meta.env.TZ;
|
|
import.meta.env.TZ = 'America/New_York';
|
|
expect(new Date('2024-03-15').toLocaleString('en-US')).toEqual('3/14/2024, 8:00:00 PM');
|
|
expect(toAbsoluteLocaleDate('2024-03-15', 'en-US')).toEqual('3/15/2024, 12:00:00 AM');
|
|
import.meta.env.TZ = oldTZ;
|
|
});
|