diff options
author | 2024-01-08 13:39:41 -0800 | |
---|---|---|
committer | 2024-01-08 22:39:41 +0100 | |
commit | d77a0320b7c0f499b357e7831f967628d1a80f18 (patch) | |
tree | cab5fb86f500a34ff8c1ebd8d6522249cdedfb82 | |
parent | 51c4c82e46d3c4e9b39b026ab6b0ee682a77d136 (diff) | |
download | astro-d77a0320b7c0f499b357e7831f967628d1a80f18.tar.gz astro-d77a0320b7c0f499b357e7831f967628d1a80f18.tar.zst astro-d77a0320b7c0f499b357e7831f967628d1a80f18.zip |
fix(rss): update test name to better match behavior (#9646)
-rw-r--r-- | packages/astro-rss/test/pagesGlobToRssItems.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro-rss/test/pagesGlobToRssItems.test.js b/packages/astro-rss/test/pagesGlobToRssItems.test.js index e72f6d3b3..d0b944ac8 100644 --- a/packages/astro-rss/test/pagesGlobToRssItems.test.js +++ b/packages/astro-rss/test/pagesGlobToRssItems.test.js @@ -100,7 +100,7 @@ describe('pagesGlobToRssItems', () => { return chai.expect(pagesGlobToRssItems(globResult)).to.not.be.rejected; }); - it('should fail on missing "description" key if "title" is present', () => { + it('should not fail on missing "description" key if "title" is present', () => { const globResult = { './posts/php.md': () => new Promise((resolve) => |