This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
jasmine-spec-reporter | devDependencies | major | ~5.0.0 -> ~7.0.0 |
v7.0.0
Update signature of CustomReporterResult
to fix collision with new jasmine properties
Before:
export interface CustomReporterResult extends jasmine.CustomReporterResult {
duration?: string
}
Now:
export interface CustomReporterResult extends jasmine.CustomReporterResult {
_jsr?: {
formattedDuration?: string
}
}
v6.0.0
String prototype does not contain color properties anymore, colors must now be applied with the new theme
component available as a field in custom display processors.
Before:
class MyProcessor extends DisplayProcessor {
public displaySuccessfulSpec(spec: CustomReporterResult, log: string): string {
return 'OK '.successful + log
}
}
Now:
class MyProcessor extends DisplayProcessor {
public displaySuccessfulSpec(spec: CustomReporterResult, log: string): string {
return this.theme.successful('OK ') + log
}
}
This MR has been generated by Renovate Bot.