| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
html-reporter or, as we also call it, Testplane UI — is an open-source project that can be used to view test results or interact with tools like Testplane, Playwright or Jest.
View test steps, replay them and when something goes wrong, find the root cause with ease.
Accept or undo changes in visual checks with one click. Multiple viewing modes and dedicated visual checks tab will help you analyze the difference.
Something went wrong in CI? Pull the report and continue troubleshooting locally.
Spot flaky tests, slow tests or other issues using "sort by" and "group by" options.
Benefits over regular reporters include:
One link is worth a thousand words, so here it is — see all the features for yourself.
Important
Currently html-reporter needs Node v18 or higher and works with Testplane, Playwright and Jest.
Note that html-reporter is tool-agnostic at its core, so adding support for a new tool is a matter of implementing new data adapters. If you have a specific tool in mind, raise an issue — let's discuss what can be done.
Install html-reporter with your favorite package manager:
npm i -D html-reporterTurn it on in your tool's config:
Testplane // .testplane.config.ts
export = {
// ...
plugins: {
'html-reporter/testplane': {
enabled: true,
path: 'html-report',
},
},
};
// playwright.config.ts
export default defineConfig({
// ...
reporter: [
['html-reporter/playwright', {
enabled: true,
defaultView: 'failed',
path: 'html-report',
}],
],
});
const config = {
// ...
reporters: [
['html-reporter/jest', {
path: 'html-report',
}]
],
};
Run your tests and see the report:
npm test
npx serve html-reportTry UI mode to run your tests from the UI:
npx html-reporter guiNote: UI mode is available only for Testplane and Playwright. To use with Playwright, add --tool playwright.
See full documentation in various languages here:
Our mission with this repository is to make the development process open, while continuing to improve upon its features, performance and ease of use. We hope other organizations find value in our project and benefit from our work.
We welcome and appreciate community contributions. To ensure our efforts are in sync, we recommend to raise an issue or leave a comment beforehand.
Visit our contributing guide to understand more about our development process and how to get involved.
Testplane is MIT licensed.
| Back | FazBrowse Home | New Git URL |