summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/markdown/component/package.json5
-rw-r--r--packages/markdown/component/test/test-utils.js6
2 files changed, 6 insertions, 5 deletions
diff --git a/packages/markdown/component/package.json b/packages/markdown/component/package.json
index 5308899e0..fcbb120c5 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 db2cc6b18..6bb3e7c25 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);