Version 2.1.1
🔥 Breaking Changes!
This release changes the output of htmlReport from an object to a string, this brings it in line with other output summary wrappers (e.g. textSummary) and simplifies using it in combination with other outputs
The new way to use is now
export function handleSummary(data) {
return {
"summary.html": htmlReport(data),
};
}