diff options
author | 2023-02-16 18:53:30 +0800 | |
---|---|---|
committer | 2023-02-16 18:53:30 +0800 | |
commit | 0049fda62fa8650a0d250adb00a2c5d82679aeaf (patch) | |
tree | d651c0c62696af11eeea5e060d06d2648deed763 /packages/integrations/mdx/test/mdx-plugins.test.js | |
parent | 66acc6a65c978bbd3dde096f243c742d738b092a (diff) | |
download | astro-0049fda62fa8650a0d250adb00a2c5d82679aeaf.tar.gz astro-0049fda62fa8650a0d250adb00a2c5d82679aeaf.tar.zst astro-0049fda62fa8650a0d250adb00a2c5d82679aeaf.zip |
Support rehype plugins that inject namespaced attributes 2 (#6253)
Diffstat (limited to 'packages/integrations/mdx/test/mdx-plugins.test.js')
-rw-r--r-- | packages/integrations/mdx/test/mdx-plugins.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/mdx/test/mdx-plugins.test.js b/packages/integrations/mdx/test/mdx-plugins.test.js index a3a871762..139d2042f 100644 --- a/packages/integrations/mdx/test/mdx-plugins.test.js +++ b/packages/integrations/mdx/test/mdx-plugins.test.js @@ -63,7 +63,7 @@ describe('MDX plugins', () => { expect(selectRehypeExample(document)).to.not.be.null; }); - it.skip('supports custom rehype plugins with namespaced attributes', async () => { + it('supports custom rehype plugins with namespaced attributes', async () => { const fixture = await buildFixture({ integrations: [ mdx({ |