summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/speed-insights.test.js
diff options
context:
space:
mode:
authorGravatar Matt Kane <m@mk.gg> 2024-09-02 17:40:53 +0100
committerGravatar Matt Kane <m@mk.gg> 2024-09-02 17:40:53 +0100
commita1d78b75aa86e496534a7d8e90deffbcac07ca48 (patch)
tree9052792e64dc977bb2e60b645c2131feaaa3bb02 /packages/integrations/vercel/test/speed-insights.test.js
parent3ab3b4efbcdd2aabea5f949deedf51a5acefae59 (diff)
parentcd542109ba5b39598da6573f128c6783a6701215 (diff)
downloadastro-a1d78b75aa86e496534a7d8e90deffbcac07ca48.tar.gz
astro-a1d78b75aa86e496534a7d8e90deffbcac07ca48.tar.zst
astro-a1d78b75aa86e496534a7d8e90deffbcac07ca48.zip
Merge branch 'main' into next
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/);
- });
- });
-});