@@ -25,6 +25,10 @@ test('api', () => {
2525 )
2626 assert ( jsxCore . includes ( 'jsx' ) , 'should expose `jsx` from `/jsx-runtime`' )
2727 assert ( jsxCore . includes ( 'jsxs' ) , 'should expose `jsxs` from `/jsx-runtime`' )
28+ assert (
29+ jsxCore . includes ( 'jsxDEV' ) ,
30+ 'should expose `jsxDEV` from `/jsx-runtime`'
31+ )
2832 const jsxHtml = Object . keys ( jsxHtmlMod )
2933 assert (
3034 jsxHtml . includes ( 'Fragment' ) ,
@@ -38,6 +42,10 @@ test('api', () => {
3842 jsxHtml . includes ( 'jsxs' ) ,
3943 'should expose `jsxs` from `/html/jsx-runtime`'
4044 )
45+ assert (
46+ jsxHtml . includes ( 'jsxDEV' ) ,
47+ 'should expose `jsxDEV` from `/html/jsx-runtime`'
48+ )
4149 const jsxSvg = Object . keys ( jsxSvgMod )
4250 assert (
4351 jsxSvg . includes ( 'Fragment' ) ,
@@ -48,6 +56,10 @@ test('api', () => {
4856 jsxSvg . includes ( 'jsxs' ) ,
4957 'should expose `jsxs` from `/svg/jsx-runtime`'
5058 )
59+ assert (
60+ jsxSvg . includes ( 'jsxDEV' ) ,
61+ 'should expose `jsxDEV` from `/svg/jsx-runtime`'
62+ )
5163} )
5264
5365test ( 'hastscript' , async ( t ) => {
0 commit comments