diff options
author | 2022-07-20 20:47:28 +0000 | |
---|---|---|
committer | 2022-07-20 20:47:28 +0000 | |
commit | 335e58cd8b76a40e50430c152cd6244022494189 (patch) | |
tree | 5f90adca1faa9f7135f23cd860a5b12a27f827d2 | |
parent | bccd88f0ebe1fbf383c0cee4b27a4c24c72dea72 (diff) | |
download | astro-335e58cd8b76a40e50430c152cd6244022494189.tar.gz astro-335e58cd8b76a40e50430c152cd6244022494189.tar.zst astro-335e58cd8b76a40e50430c152cd6244022494189.zip |
[ci] format
-rw-r--r-- | packages/markdown/component/package.json | 5 | ||||
-rw-r--r-- | packages/markdown/component/test/test-utils.js | 6 |
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); |