0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/web-vitals/test/test-utils.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
744 B
JavaScript
Raw Normal View History

2024-05-03 10:40:53 -05:00
import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js';
/** @typedef {import('../../../astro/test/test-utils').Fixture} Fixture */
/** @typedef {import('../../../astro/test/test-utils').DevServer} DevServer */
/** @type {typeof import('../../../astro/test/test-utils.js')['loadFixture']} */
export function loadFixture(inlineConfig) {
if (!inlineConfig?.root) throw new Error("Must provide { root: './fixtures/...' }");
// resolve the relative root (i.e. "./fixtures/tailwindcss") to a full filepath
// without this, the main `loadFixture` helper will resolve relative to `packages/astro/test`
return baseLoadFixture({
...inlineConfig,
root: new URL(inlineConfig.root, import.meta.url).toString(),
});
}