gemini-testing / testplane

Testplane (ex-hermione) browser test runner based on mocha and wdio
https://testplane.io
MIT License
687 stars 62 forks source link

feat: ability to read tests in ".jsx" and ".tsx" files #851

Closed DudaGod closed 5 months ago

DudaGod commented 6 months ago

What is done

Added ability to read tests in .jsx and .tsx files. To do this, it was necessary to add a code transpiler - babel. Used in order to convert components like <h1>foo</h1> to code which can be required.

In this PR supports only commonjs because esm projects not working with Hermione at the moment.