From da060ba529585b443fdd7af113f59a1e91a68492 Mon Sep 17 00:00:00 2001 From: mtwilliams Date: Fri, 27 Dec 2024 13:46:13 -0600 Subject: [PATCH] add failing tests --- packages/astro/test/i18n-routing.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/test/i18n-routing.test.js b/packages/astro/test/i18n-routing.test.js index 36b91b3b1f93..dc338c7db0b7 100644 --- a/packages/astro/test/i18n-routing.test.js +++ b/packages/astro/test/i18n-routing.test.js @@ -1,6 +1,6 @@ -import * as cheerio from 'cheerio'; import * as assert from 'node:assert/strict'; import { after, afterEach, before, describe, it } from 'node:test'; +import * as cheerio from 'cheerio'; import testAdapter from './test-adapter.js'; import { loadFixture } from './test-utils.js'; @@ -2014,13 +2014,13 @@ describe('Fallback rewrite dev server', () => { locales: ['en', 'fr', 'es', 'it', 'pt'], routing: { prefixDefaultLocale: false, + fallbackType: 'rewrite', }, fallback: { fr: 'en', it: 'en', es: 'pt', }, - fallbackType: 'rewrite', }, }); devServer = await fixture.startDevServer();