This release adds an integration with Jest framework and further enhancements to New UI.
🚀 Improvements
Jest support
We're happy to announce that html-reporter is now compatible with Jest! Whether you are using Testplane, Playwright or Jest — you can view test results in a single UI, which leads to more unified & streamlined developer experience!
To get started with Jest integration, make sure you have html-reporter installed:
npm i -D html-reporter
And then add it to your Jest config as a reporter:
const config = {
reporters: [
'html-reporter/build/jest.js',
/* ...other Jest reporters */
],
};
After running your Jest tests, report will appear in html-report
folder by default. Read our article to find out more!
One limitation though: GUI mode for Jest is not yet supported. This means that you can't run your tests from our UI — only view results after running Jest directly.
Better error handling in New UI
We've worked on better error handling across the whole app — now if anything goes wrong, it goes wrong with style.
Images prefetching
We've added images prefetching in New UI to make working with screenshots even better. Now, most of the time you open up a test result, all images are already there and you don't need to wait!