diff options
author | 2024-02-21 14:08:19 +0000 | |
---|---|---|
committer | 2024-02-21 14:08:19 +0000 | |
commit | 062623438b5dfd66682a967edc7b7c91bd29e888 (patch) | |
tree | 49fb9c638ccc6016ccd44a165058446e23975207 /packages/astro-rss/test/rss.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/astro-rss/test/rss.test.js')
-rw-r--r-- | packages/astro-rss/test/rss.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro-rss/test/rss.test.js b/packages/astro-rss/test/rss.test.js index 02df32f48..2d5a0f6c8 100644 --- a/packages/astro-rss/test/rss.test.js +++ b/packages/astro-rss/test/rss.test.js @@ -6,6 +6,7 @@ import rss, { getRssString } from '../dist/index.js'; import { rssSchema } from '../dist/schema.js'; import { description, + parseXmlString, phpFeedItem, phpFeedItemWithContent, phpFeedItemWithCustomData, @@ -14,7 +15,6 @@ import { web1FeedItem, web1FeedItemWithAllData, web1FeedItemWithContent, - parseXmlString, } from './test-utils.js'; // note: I spent 30 minutes looking for a nice node-based snapshot tool |