Skip to content

v4.0.0

Compare
Choose a tag to compare
@bcaudan bcaudan released this 15 Apr 11:19
· 570 commits to master since this release
  • Use string primitive instead of String wrapper object #134, #137

Breaking change

It only impacts TypeScript integrations, DisplayProcessor methods signature now use string instead of String.

Before:

displaySuite(suite: CustomReporterResult, log: String): String;

Now:

displaySuite(suite: CustomReporterResult, log: string): string;