azer / prova

Test runner based on Tape and Browserify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

reactify transform doesn't seem to work

davidtheclark opened this issue · comments

I have a test that imports a React component that uses JSX syntax. I know that straight up JS will throw an error when it sees <div>, so I've tried using the reactify transform by running the test with node my-test -t reactify, following the instructions.

However, that <div> is still breaking things, despite the effort at using the transform: SyntaxError: Unexpected token <

Should this be working? Or is there some specific problem with JSX so that just flagging the transform is not enough?

Thanks.