From 410392582875cc16b57764d5f777cbdc77ba2d7e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 22:29:37 +0800 Subject: [PATCH] fix(deps): update all non-major dependencies (#11674) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: bluwy --- packages/integrations/vercel/package.json | 2 +- packages/integrations/vercel/test/speed-insights.test.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 13eb23fbca..70fe485b28 100644 --- a/packages/integrations/vercel/package.json +++ b/packages/integrations/vercel/package.json @@ -65,7 +65,7 @@ "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", - "cheerio": "1.0.0-rc.12" + "cheerio": "1.0.0" }, "publishConfig": { "provenance": true diff --git a/packages/integrations/vercel/test/speed-insights.test.js b/packages/integrations/vercel/test/speed-insights.test.js index 2ee9dcc3bf..28ca84cd20 100644 --- a/packages/integrations/vercel/test/speed-insights.test.js +++ b/packages/integrations/vercel/test/speed-insights.test.js @@ -20,7 +20,7 @@ describe('Vercel Speed Insights', () => { const bundle = await fixture.readFile(`../.vercel/output/static/_astro/${page}`); - assert.match(bundle, /https:\/\/vitals.vercel-analytics.com\/v1\/vitals/); + assert.match(bundle, /VERCEL_ANALYTICS_ID/); }); }); @@ -41,7 +41,7 @@ describe('Vercel Speed Insights', () => { const bundle = await fixture.readFile(`../.vercel/output/static/_astro/${page}`); - assert.match(bundle, /https:\/\/vitals.vercel-analytics.com\/v1\/vitals/); + assert.match(bundle, /VERCEL_ANALYTICS_ID/); }); }); });