diff options
author | 2024-07-17 14:48:07 +0800 | |
---|---|---|
committer | 2024-07-17 14:48:07 +0800 | |
commit | 2113a5693334151b204172e4832e7a485487f07c (patch) | |
tree | d184914ec8eae6c3fc6808019b55ef6ea7a71447 /packages/integrations/mdx/test | |
parent | 2c437ff99cc0d3b7166305eb22f24ad1d2e30bc0 (diff) | |
download | astro-2113a5693334151b204172e4832e7a485487f07c.tar.gz astro-2113a5693334151b204172e4832e7a485487f07c.tar.zst astro-2113a5693334151b204172e4832e7a485487f07c.zip |
fix(deps): update all non-major dependencies (#11426)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
Diffstat (limited to 'packages/integrations/mdx/test')
-rw-r--r-- | packages/integrations/mdx/test/mdx-plugins.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/mdx/test/mdx-plugins.test.js b/packages/integrations/mdx/test/mdx-plugins.test.js index 6bc8e096c..124ec52c1 100644 --- a/packages/integrations/mdx/test/mdx-plugins.test.js +++ b/packages/integrations/mdx/test/mdx-plugins.test.js @@ -47,7 +47,7 @@ describe('MDX plugins', () => { const quote = selectSmartypantsQuote(document); assert.notEqual(quote, null); - assert.equal(quote.textContent.includes('”Smartypants” is — awesome'), true); + assert.equal(quote.textContent.includes('“Smartypants” is — awesome'), true); }); it('supports custom rehype plugins', async () => { @@ -198,7 +198,7 @@ describe('MDX plugins', () => { ); } else { assert.equal( - quote.textContent.includes('”Smartypants” is — awesome'), + quote.textContent.includes('“Smartypants” is — awesome'), true, 'Respects `markdown.smartypants` unexpectedly.' ); |