diff --git a/.changeset/empty-houses-melt.md b/.changeset/empty-houses-melt.md new file mode 100644 index 000000000000..737cf9d3dbd8 --- /dev/null +++ b/.changeset/empty-houses-melt.md @@ -0,0 +1,5 @@ +--- +'astro': minor +--- + +Updates to Vite 6.0.0-beta.6 diff --git a/packages/astro/e2e/errors.test.js b/packages/astro/e2e/errors.test.js index f64a22b5cfc9..2631bf48438c 100644 --- a/packages/astro/e2e/errors.test.js +++ b/packages/astro/e2e/errors.test.js @@ -81,7 +81,8 @@ test.describe('Error display', () => { expect(fileLocation).toMatch(/^vue\/VueRuntimeError.vue/); }); - test('shows correct line when a style preprocess has an error', async ({ page, astro }) => { + // TODO: unskip when upgrading to Vite 6.0.0-beta.7 or above + test.skip('shows correct line when a style preprocess has an error', async ({ page, astro }) => { await page.goto(astro.resolveUrl('/astro-sass-error'), { waitUntil: 'networkidle' }); const { fileLocation, absoluteFileLocation } = await getErrorOverlayContent(page);