chore(deps): update dependency jasmine-spec-reporter to v7
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
jasmine-spec-reporter | devDependencies | major | ~5.0.0 -> ~7.0.0 |
Release Notes
bcaudan/jasmine-spec-reporter
v7.0.0
Bugfix
- 'SpecReporter' is not assignable to type 'Reporter | CustomReporter' #588
Breaking change
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
Feature
- Use colors/safe #538
Breaking change
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
}
}
Configuration
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot.
Merge request reports
Activity
Please register or sign in to reply