summaryrefslogtreecommitdiff
path: root/packages/astro-rss/test/rss.test.js
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2023-12-04 17:56:32 +0100
committerGravatar GitHub <noreply@github.com> 2023-12-04 17:56:32 +0100
commit4aa80915829388e3e696975ac8c3b0332c47b5ea (patch)
treefbe44483c5890bc40beef7567f5fad20e82f6fdb /packages/astro-rss/test/rss.test.js
parentbd9907867b0a491cb6c747ec51c2313687af501e (diff)
downloadastro-4aa80915829388e3e696975ac8c3b0332c47b5ea.tar.gz
astro-4aa80915829388e3e696975ac8c3b0332c47b5ea.tar.zst
astro-4aa80915829388e3e696975ac8c3b0332c47b5ea.zip
fix: enforce separate type imports (#9288)
Diffstat (limited to 'packages/astro-rss/test/rss.test.js')
-rw-r--r--packages/astro-rss/test/rss.test.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/astro-rss/test/rss.test.js b/packages/astro-rss/test/rss.test.js
index cc7bff82b..e6f68a272 100644
--- a/packages/astro-rss/test/rss.test.js
+++ b/packages/astro-rss/test/rss.test.js
@@ -1,18 +1,18 @@
-import rss, { getRssString } from '../dist/index.js';
-import { rssSchema } from '../dist/schema.js';
import chai from 'chai';
import chaiPromises from 'chai-as-promised';
import chaiXml from 'chai-xml';
+import rss, { getRssString } from '../dist/index.js';
+import { rssSchema } from '../dist/schema.js';
import {
- title,
description,
- site,
phpFeedItem,
phpFeedItemWithContent,
phpFeedItemWithCustomData,
+ site,
+ title,
web1FeedItem,
- web1FeedItemWithContent,
web1FeedItemWithAllData,
+ web1FeedItemWithContent,
} from './test-utils.js';
chai.use(chaiPromises);