Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing esx.register of imported component #2

Open
irudoy opened this issue Oct 18, 2019 · 0 comments
Open

Missing esx.register of imported component #2

irudoy opened this issue Oct 18, 2019 · 0 comments

Comments

@irudoy
Copy link

irudoy commented Oct 18, 2019

There are no esx.register call when importing component with import statement.

test('JSX component registration – import', async ({ is }) => {
  const src = [
    `import React from 'react'`,
    `import Foo from './foo'`,
    'module.exports = <div><Foo/></div>'
  ].join('\n')
  const esx = [
    `const esx = require('esx')()`,
    `import React from 'react'`,
    `import Foo from './foo'`,
    'esx.register({ Foo })',
    'module.exports = esx `<div><Foo/></div>`'
  ].join('\n')
  is(convert(src), esx)
})
--- wanted                                
+++ found                                 
const esx = require('esx')()             
import React from 'react'                
import Foo from './foo'                  
-esx.register({ Foo })                    
module.exports = esx `<div><Foo/></div>`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant