diff options
author | 2022-10-13 14:15:57 -0500 | |
---|---|---|
committer | 2022-10-13 14:15:57 -0500 | |
commit | d25f54cb9306eea9ed0445af8f77604dacacad43 (patch) | |
tree | b5b1c93b4c9a2685b052e3c39f91f916bf6b086f /packages/integrations/vue/test/test-utils.js | |
parent | 6f9a88b31ba0881acd56fcb62c4a554c867b14d6 (diff) | |
download | astro-d25f54cb9306eea9ed0445af8f77604dacacad43.tar.gz astro-d25f54cb9306eea9ed0445af8f77604dacacad43.tar.zst astro-d25f54cb9306eea9ed0445af8f77604dacacad43.zip |
[Vue] add support for `appEntrypoint` (#5075)
* feat(vue): add support for appEntrypoint
* chore: add changeset
* test(vue): add tests for app entrypoint
* docs(vue): update README to include app entrypoint
* fix(vue): prefer resolvedVirtualModuleId
Co-authored-by: Nate Moore <nate@astro.build>
Diffstat (limited to 'packages/integrations/vue/test/test-utils.js')
-rw-r--r-- | packages/integrations/vue/test/test-utils.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/integrations/vue/test/test-utils.js b/packages/integrations/vue/test/test-utils.js new file mode 100644 index 000000000..2475944be --- /dev/null +++ b/packages/integrations/vue/test/test-utils.js @@ -0,0 +1,17 @@ +import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js'; + +/** + * @typedef {import('../../../astro/test/test-utils').Fixture} Fixture + */ + +export function loadFixture(inlineConfig) { + if (!inlineConfig || !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(), + }); +} |