From 3f51277bd5d2592d99a0d157b3480d695f1168da Mon Sep 17 00:00:00 2001 From: xenticore Date: Mon, 24 Mar 2025 19:38:05 -0400 Subject: [PATCH] test: remove unnecessary comments --- __tests__/localization.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/__tests__/localization.test.ts b/__tests__/localization.test.ts index e6699cf..0f929ed 100644 --- a/__tests__/localization.test.ts +++ b/__tests__/localization.test.ts @@ -7,17 +7,14 @@ beforeEach(() => { describe('localization', () => { it('should assume `en` if no locale is specified', async () => { - // extractLocaleFromURL('https://wiki.teamfortress.com/wiki/Team_Fortress_2') should return 'en' expect(extractLocaleFromURL('https://wiki.teamfortress.com/wiki/Team_Fortress_2')).toBe('en') }) it('should extract locale shortcode from URL correctly', async () => { - // extractLocaleFromURL('https://wiki.teamfortress.com/wiki/Phlogistinator/de') should return 'de' expect(extractLocaleFromURL('https://wiki.teamfortress.com/wiki/Phlogistinator/de')).toBe('de') }) it('should extract locale shortcode with special characters from URL correctly', async () => { - // extractLocaleFromURL('https://wiki.teamfortress.com/wiki/%C3%9CberCharge/zh-hans') should return 'zh-hans' expect(extractLocaleFromURL('https://wiki.teamfortress.com/wiki/%C3%9CberCharge/zh-hans')).toBe('zh-hans') }) }) \ No newline at end of file