Socket
Socket
Sign inDemoInstall

jasmine

Package Overview
Dependencies
Maintainers
3
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jasmine - npm Package Compare versions

Comparing version 3.4.0 to 3.5.0

12

lib/reporters/console_reporter.js
module.exports = exports = ConsoleReporter;
var noopTimer = {
start: function(){},
elapsed: function(){ return 0; }
};
function ConsoleReporter() {
var print = function() {},
showColors = false,
timer = noopTimer,
jasmineCorePath = null,

@@ -32,5 +26,2 @@ specCount,

showColors = options.showColors || false;
if (options.timer) {
timer = options.timer;
}
if (options.jasmineCorePath) {

@@ -54,3 +45,2 @@ jasmineCorePath = options.jasmineCorePath;

printNewline();
timer.start();
};

@@ -103,3 +93,3 @@

printNewline();
var seconds = timer.elapsed() / 1000;
var seconds = result ? result.totalTime / 1000 : 0;
print('Finished in ' + seconds + ' ' + plural('second', seconds));

@@ -106,0 +96,0 @@ printNewline();

10

package.json

@@ -12,3 +12,3 @@ {

"license": "MIT",
"version": "3.4.0",
"version": "3.5.0",
"repository": {

@@ -22,4 +22,4 @@ "type": "git",

"dependencies": {
"glob": "^7.1.3",
"jasmine-core": "~3.4.0"
"glob": "^7.1.4",
"jasmine-core": "~3.5.0"
},

@@ -29,5 +29,5 @@ "bin": "./bin/jasmine.js",

"devDependencies": {
"grunt": "^1.0.3",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-jshint": "^2.1.0",
"shelljs": "^0.8.3",

@@ -34,0 +34,0 @@ "slash": "^2.0.0"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc