summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/speed-insights.test.js
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2024-09-19 21:13:44 +0800
committerGravatar GitHub <noreply@github.com> 2024-09-19 21:13:44 +0800
commit997fd33c291cec374f2bc969c0919b422e5dcbd3 (patch)
treeb8f03aa661515e5eb8f9ab2132381ba56649ae8a /packages/integrations/vercel/test/speed-insights.test.js
parent7a4d252a17584afa08db199b692fd29cf38d8b55 (diff)
downloadastro-997fd33c291cec374f2bc969c0919b422e5dcbd3.tar.gz
astro-997fd33c291cec374f2bc969c0919b422e5dcbd3.tar.zst
astro-997fd33c291cec374f2bc969c0919b422e5dcbd3.zip
Remove vercel speedInsights option (#384)
Diffstat (limited to 'packages/integrations/vercel/test/speed-insights.test.js')
-rw-r--r--packages/integrations/vercel/test/speed-insights.test.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/packages/integrations/vercel/test/speed-insights.test.js b/packages/integrations/vercel/test/speed-insights.test.js
deleted file mode 100644
index 28ca84cd2..000000000
--- a/packages/integrations/vercel/test/speed-insights.test.js
+++ /dev/null
@@ -1,47 +0,0 @@
-import assert from 'node:assert/strict';
-import { before, describe, it } from 'node:test';
-import { loadFixture } from './test-utils.js';
-
-describe('Vercel Speed Insights', () => {
- describe('output: server', () => {
- /** @type {import('./test-utils.js').Fixture} */
- let fixture;
-
- before(async () => {
- fixture = await loadFixture({
- root: './fixtures/with-speed-insights-enabled/output-as-server/',
- output: 'server',
- });
- await fixture.build();
- });
-
- it('ensures that Vercel Speed Insights is present in the bundle', async () => {
- const [page] = await fixture.readdir('../.vercel/output/static/_astro');
-
- const bundle = await fixture.readFile(`../.vercel/output/static/_astro/${page}`);
-
- assert.match(bundle, /VERCEL_ANALYTICS_ID/);
- });
- });
-
- describe('output: static', () => {
- /** @type {import('./test-utils.js').Fixture} */
- let fixture;
-
- before(async () => {
- fixture = await loadFixture({
- root: './fixtures/with-speed-insights-enabled/output-as-static/',
- output: 'static',
- });
- await fixture.build();
- });
-
- it('ensures that Vercel Speed Insights is present in the bundle', async () => {
- const [page] = await fixture.readdir('../.vercel/output/static/_astro');
-
- const bundle = await fixture.readFile(`../.vercel/output/static/_astro/${page}`);
-
- assert.match(bundle, /VERCEL_ANALYTICS_ID/);
- });
- });
-});