@@ -25,6 +25,10 @@ test('api', () => {
25
25
)
26
26
assert ( jsxCore . includes ( 'jsx' ) , 'should expose `jsx` from `/jsx-runtime`' )
27
27
assert ( jsxCore . includes ( 'jsxs' ) , 'should expose `jsxs` from `/jsx-runtime`' )
28
+ assert (
29
+ jsxCore . includes ( 'jsxDEV' ) ,
30
+ 'should expose `jsxDEV` from `/jsx-runtime`'
31
+ )
28
32
const jsxHtml = Object . keys ( jsxHtmlMod )
29
33
assert (
30
34
jsxHtml . includes ( 'Fragment' ) ,
@@ -38,6 +42,10 @@ test('api', () => {
38
42
jsxHtml . includes ( 'jsxs' ) ,
39
43
'should expose `jsxs` from `/html/jsx-runtime`'
40
44
)
45
+ assert (
46
+ jsxHtml . includes ( 'jsxDEV' ) ,
47
+ 'should expose `jsxDEV` from `/html/jsx-runtime`'
48
+ )
41
49
const jsxSvg = Object . keys ( jsxSvgMod )
42
50
assert (
43
51
jsxSvg . includes ( 'Fragment' ) ,
@@ -48,6 +56,10 @@ test('api', () => {
48
56
jsxSvg . includes ( 'jsxs' ) ,
49
57
'should expose `jsxs` from `/svg/jsx-runtime`'
50
58
)
59
+ assert (
60
+ jsxSvg . includes ( 'jsxDEV' ) ,
61
+ 'should expose `jsxDEV` from `/svg/jsx-runtime`'
62
+ )
51
63
} )
52
64
53
65
test ( 'hastscript' , async ( t ) => {
0 commit comments