mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
062623438b
* chore: use biome to sort imports * do the sorting * Update package.json Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> --------- Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
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, /https:\/\/vitals.vercel-analytics.com\/v1\/vitals/);
|
|
});
|
|
});
|
|
|
|
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, /https:\/\/vitals.vercel-analytics.com\/v1\/vitals/);
|
|
});
|
|
});
|
|
});
|