Skip to content

Commit

Permalink
chore: update custom element test case
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Aug 11, 2022
1 parent 1c86a45 commit f1205fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mdx/test/compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -859,9 +859,9 @@ test('jsx', async () => {
'/*@jsxRuntime automatic @jsxImportSource react*/',
'function _createMdxContent(props) {',
' const _components = Object.assign({',
' "a-b": "a-b"',
' a_b: "a-b"',
' }, props.components);',
' return <>{<_components.a-b></_components.a-b>}</>;',
' return <>{<_components.a_b></_components.a_b>}</>;',
'}',
'function MDXContent(props = {}) {',
' const {wrapper: MDXLayout} = props.components || ({});',
Expand Down

0 comments on commit f1205fe

Please sign in to comment.