diff options
author | 2022-09-28 23:13:33 +0800 | |
---|---|---|
committer | 2022-09-28 23:13:33 +0800 | |
commit | 812658ad2ab3732a99e35c4fd903e302e723db46 (patch) | |
tree | 37dc457bcfa8558e546d064eb315a74149010da1 /packages/markdown/component/test/astro-markdown.test.js | |
parent | f4bca41a2d85968a2c9f2379f99954c7bcb06df1 (diff) | |
download | astro-812658ad2ab3732a99e35c4fd903e302e723db46.tar.gz astro-812658ad2ab3732a99e35c4fd903e302e723db46.tar.zst astro-812658ad2ab3732a99e35c4fd903e302e723db46.zip |
Remove shamefully-hoist (#4842)
Diffstat (limited to 'packages/markdown/component/test/astro-markdown.test.js')
-rw-r--r-- | packages/markdown/component/test/astro-markdown.test.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/markdown/component/test/astro-markdown.test.js b/packages/markdown/component/test/astro-markdown.test.js index c0726d2ca..e5a1382a5 100644 --- a/packages/markdown/component/test/astro-markdown.test.js +++ b/packages/markdown/component/test/astro-markdown.test.js @@ -12,6 +12,8 @@ describe('Astro Markdown', () => { await fixture.build(); }); + // NOTE: This test uses legacy markdown, which requires `github-slugger` to be installed. + // This breaks in strict dependency installation, but since it's a legacy feature, ignore for now. it('Can load markdown pages with Astro', async () => { const html = await fixture.readFile('/post/index.html'); const $ = cheerio.load(html); |