diff options
author | 2024-02-21 14:08:19 +0000 | |
---|---|---|
committer | 2024-02-21 14:08:19 +0000 | |
commit | 062623438b5dfd66682a967edc7b7c91bd29e888 (patch) | |
tree | 49fb9c638ccc6016ccd44a165058446e23975207 /packages/integrations/mdx/test/mdx-syntax-highlighting.test.js | |
parent | 8e51bf9ea9661c5228ec43e30b661fc422a5803d (diff) | |
download | astro-062623438b5dfd66682a967edc7b7c91bd29e888.tar.gz astro-062623438b5dfd66682a967edc7b7c91bd29e888.tar.zst astro-062623438b5dfd66682a967edc7b7c91bd29e888.zip |
chore: use biome to sort imports - only test files (#10180)
* chore: use biome to sort imports
* do the sorting
* Update package.json
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
---------
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
Diffstat (limited to 'packages/integrations/mdx/test/mdx-syntax-highlighting.test.js')
-rw-r--r-- | packages/integrations/mdx/test/mdx-syntax-highlighting.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/mdx/test/mdx-syntax-highlighting.test.js b/packages/integrations/mdx/test/mdx-syntax-highlighting.test.js index e5ce04126..662c1a0cd 100644 --- a/packages/integrations/mdx/test/mdx-syntax-highlighting.test.js +++ b/packages/integrations/mdx/test/mdx-syntax-highlighting.test.js @@ -1,11 +1,11 @@ import mdx from '@astrojs/mdx'; -import { describe, it } from 'node:test'; import * as assert from 'node:assert/strict'; +import { describe, it } from 'node:test'; import { parseHTML } from 'linkedom'; -import { loadFixture } from '../../../astro/test/test-utils.js'; -import shikiTwoslash from 'remark-shiki-twoslash'; import rehypePrettyCode from 'rehype-pretty-code'; +import shikiTwoslash from 'remark-shiki-twoslash'; +import { loadFixture } from '../../../astro/test/test-utils.js'; const FIXTURE_ROOT = new URL('./fixtures/mdx-syntax-hightlighting/', import.meta.url); |