summaryrefslogtreecommitdiff
path: root/packages/astro-rss/test/rss.test.js
diff options
context:
space:
mode:
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);