Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jest-jasmine2

Package Overview
Dependencies
Maintainers
4
Versions
309
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-jasmine2 - npm Package Compare versions

Comparing version 12.1.4-alpha.a737c6e5 to 12.1.5-alpha.b5322422

5

build/reporter.js

@@ -22,3 +22,2 @@ /**

const microtime = require('microtime');
const jasmineRequire = require('../vendor/jasmine-2.4.1.js');

@@ -60,3 +59,3 @@ const jasmine = jasmineRequire.core(jasmineRequire);

specStarted(spec) {
this._startTimes.set(spec.id, microtime.now());}
this._startTimes.set(spec.id, Date.now());}

@@ -113,3 +112,3 @@

const start = this._startTimes.get(specResult.id);
const duration = start ? (microtime.now() - start) / 1000 : undefined;
const duration = start ? Date.now() - start : undefined;
const status =

@@ -116,0 +115,0 @@ specResult.status === 'disabled' ? 'pending' : specResult.status;

7

package.json
{
"name": "jest-jasmine2",
"version": "12.1.4-alpha.a737c6e5",
"version": "12.1.5-alpha.b5322422",
"repository": {

@@ -13,5 +13,4 @@ "type": "git",

"jasmine-check": "^0.1.4",
"jest-snapshot": "^12.1.4-alpha.a737c6e5",
"jest-util": "^12.1.4-alpha.a737c6e5",
"microtime": "^2.1.1"
"jest-snapshot": "^12.1.5-alpha.b5322422",
"jest-util": "^12.1.5-alpha.b5322422"
},

@@ -18,0 +17,0 @@ "jest": {

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