()
| 7 | const envVars = ['LANGUAGE', 'LC_ALL', 'LC_MESSAGES', 'LANG'] as const; |
| 8 | |
| 9 | function clearLocaleEnv() { |
| 10 | for (const key of envVars) { |
| 11 | process.env[key] = undefined; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | describe('auto locale detection', () => { |
| 16 | beforeEach(() => { |