diff --git a/packages/markdown/component/package.json b/packages/markdown/component/package.json index 5308899e08..fcbb120c52 100644 --- a/packages/markdown/component/package.json +++ b/packages/markdown/component/package.json @@ -27,5 +27,8 @@ "mocha": "^9.2.2", "@types/mocha": "^9.1.1" }, - "keywords": ["astro", "astro-component"] + "keywords": [ + "astro", + "astro-component" + ] } diff --git a/packages/markdown/component/test/test-utils.js b/packages/markdown/component/test/test-utils.js index db2cc6b181..6bb3e7c253 100644 --- a/packages/markdown/component/test/test-utils.js +++ b/packages/markdown/component/test/test-utils.js @@ -1,11 +1,9 @@ import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js'; -export { - fixLineEndings -} from '../../../astro/test/test-utils.js'; +export { fixLineEndings } from '../../../astro/test/test-utils.js'; export function loadFixture(config) { - if(config?.root) { + if (config?.root) { config.root = new URL(config.root, import.meta.url); } return baseLoadFixture(config);