UNPKG

@qavajs/html-formatter

Version:

Single file HTML formatter for cucumber framework

51 lines (37 loc) 798 B
# @qavajs/html-formatter Single file HTML formatter for cucumber framework ### Installation To install formatter run ``` npm install @qavajs/html-formatter ``` and add to formatter section in config file ```typescript export default { format: [ ['@qavajs/html-formatter', 'report.html'] ], formatOptions: { htmlConfig: { showLogs: true, // enable/disable text/x.cucumber.log+plain metadata: { 'OS': 'macos', 'OS Version': '13.1' } } }, } ``` or pass `--format @qavajs/html-formatter:report.html` in cli ![](assets/qavajs_html_reporter.png) Kudos to https://github.com/epam/UUI for providing components ## Development ``` npm install ``` ``` npm run build ``` ``` npm start ```