Skip to content

v10.14.0 — Jest support & better error handling in New UI!

Latest
Compare
Choose a tag to compare
@shadowusr shadowusr released this 06 Feb 14:01

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!

proxy sandbox yandex-team ru_7947284713_new-ui html

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.

Critical Error Screen

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!