diff options
author | 2024-11-21 09:32:06 +0000 | |
---|---|---|
committer | 2024-11-21 09:32:06 +0000 | |
commit | e329657a00ae4b36efa395670eacb66a4bb0c576 (patch) | |
tree | 716cf389c47fcaa2d31541cd52c5e6a95526c963 | |
parent | a23985b02165c2ddce56d511b3f97b6815c452c9 (diff) | |
download | astro-e329657a00ae4b36efa395670eacb66a4bb0c576.tar.gz astro-e329657a00ae4b36efa395670eacb66a4bb0c576.tar.zst astro-e329657a00ae4b36efa395670eacb66a4bb0c576.zip |
[ci] format
-rw-r--r-- | packages/astro/test/i18n-routing.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/test/i18n-routing.test.js b/packages/astro/test/i18n-routing.test.js index d91a06ec3..8e6c672be 100644 --- a/packages/astro/test/i18n-routing.test.js +++ b/packages/astro/test/i18n-routing.test.js @@ -87,13 +87,13 @@ describe('[DEV] i18n routing', () => { const response = await fixture.fetch('/es/nonexistent-page'); assert.equal(response.status, 404); assert.equal((await response.text()).includes('Current Locale: es'), true); - }); + }); - it('should return the correct locale on 404 page for non existing english locale page', async () => { + it('should return the correct locale on 404 page for non existing english locale page', async () => { const response = await fixture.fetch('/en/nonexistent-page'); assert.equal(response.status, 404); assert.equal((await response.text()).includes('Current Locale: en'), true); - }); + }); }); describe('i18n routing', () => { |