You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Include code or an example repository that can easily be set up]
Expected behavior
ANSI Values should not be present in the html file
Log
If applicable, add logs to help explain your problem. If you don't have logs, enable 'debug:true' in the config and paste the log here.
Please use proper markdown to style it
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Environment (please complete the following information):
Config of multiple-cucumber-html-reporter
I configured the report using the below file
//cucumberReport.ts
import report = require('multiple-cucumber-html-reporter')
report.generate({
jsonDir: 'reports/cucumberReport',
reportName: 'Purple Portal Report',
reportPath: './reports/cucumberReport',
metadata: {
browser: {
name: '',
version: '',
},
device: 'Local test machine',
platform: {
name: '',
version: '',
},
},
customData: {
title: 'Run info',
data: [
{ label: 'Project', value: 'CRSP' },
{ label: 'Application', value: 'Purple Portal' },
],
},
})
Describe the bug
In the Html report, assertion error is showing with ANSI Values. But, terminal it is displaying correctlry
Terminal Output
Cucumber Html Report
To Reproduce
Steps to reproduce the behavior:
//cucumber.json
{
"default": {
"paths": ["src/test/features"],
"require": ["src/test/stepDefinitions/*.ts", "src/hooks/hooks.ts"],
"requireModule": ["ts-node/register"],
"publishQuiet": true,
"format": [
"progress-bar",
"./src/helper/report/allureReport.ts:./output.txt",
"html:reports/cucumberReport/cucumber-report.html",
"json:reports/cucumberReport/cucumber-report.json"
],
"parallel": 1
}
}
package.json
[Include code or an example repository that can easily be set up]
Expected behavior
ANSI Values should not be present in the html file
Log
If applicable, add logs to help explain your problem. If you don't have logs, enable 'debug:true' in the config and paste the log here.
Please use proper markdown to style it
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: