2e8726feec
* Individually enable Speed Insights and Web Analytics * Update pnpm-lock.yaml * Remove .only on tests * Fix build * Move `beforeSend` out of config * Address feedback from review * Update README.md * Add back the `analytics` property and add deprecation warning when used * Add migration guide for the deprecated `analytics` property * Update packages/integrations/vercel/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update README.md * Fix external dependency issue * Simplify plugin and reduce scope * Update .changeset/sixty-teachers-tap.md Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> * Apply feedback from review * Move exposeEnv to speed-insights since it's only used there --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Matthew Phillips <matthew@skypack.dev> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import { loadFixture } from './test-utils.js';
|
|
import { expect } from 'chai';
|
|
|
|
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}`);
|
|
|
|
expect(bundle).to.contain('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}`);
|
|
|
|
expect(bundle).to.contain('https://vitals.vercel-analytics.com/v1/vitals');
|
|
});
|
|
});
|
|
});
|