Skip to content

Version 2.1.1

Compare
Choose a tag to compare
@benc-uk benc-uk released this 16 Mar 09:57
· 9 commits to main since this release

🔥 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),
  };
}