Socket
Socket
Sign inDemoInstall

jasmine-spec-reporter

Package Overview
Dependencies
1
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
2345Next

7.0.0

Diff

bcaudan
published 6.0.0 •

Changelog

Source

6.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
  }
}
bcaudan
published 5.0.2 •

Changelog

Source

5.0.2

Bugfix

  • pretty stacktrace: catch uncaught exception on node internal files #479
bcaudan
published 5.0.1 •

Changelog

Source

5.0.1

Bugfix

  • Promote colors as a dependency #472
bcaudan
published 5.0.0 •

Changelog

Source

5.0.0

Feature

  • New option to display pretty stacktraces #467

Breaking change

displayStacktrace options now take a value among none, raw and pretty.

bcaudan
published 4.2.1 •

Changelog

Source

4.2.1

Bugfix

  • Restore compatibility with jasmine < 2.5.0 #222, #223
bcaudan
published 4.2.0 •

Changelog

Source

4.2.0

Feature

  • Support reporting errors in afterAll #210, #214
bcaudan
published 4.1.1 •

Changelog

Source

4.1.1

Bugfix

  • Correct report from jasmineStarted event #185
bcaudan
published 4.1.0 •

Changelog

Source

4.1.0

Feature

  • If any defined spec is not executed, report INCOMPLETE rather than SUCCESS #142, #145

Other

  • Rewrite unit tests by bumping jasmine-core to 2.6.x #155
  • Use yarn for development #98, #138
  • Add greenkeeper-yarn.sh to automatically updates yarn.lock on greenkeeper PR
bcaudan
published 4.0.0 •

Changelog

Source

4.0.0

  • 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;
2345Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc