Socket
Socket
Sign inDemoInstall

karma-jasmine

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-jasmine - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

12

lib/adapter.js

@@ -84,2 +84,10 @@ (function(window) {

/**
* @param suite
* @returns {boolean} Return true if it is system jasmine top level suite
*/
var isTopLevelSuite = function (suite) {
return suite.description === 'Jasmine_TopLevel_Suite';
};
var currentSuite = new SuiteNode();

@@ -115,3 +123,5 @@

this.suiteStarted = function(result) {
currentSuite = currentSuite.addChild(result.description);
if (!isTopLevelSuite(result)) {
currentSuite = currentSuite.addChild(result.description);
}
};

@@ -118,0 +128,0 @@

2

package.json
{
"name": "karma-jasmine",
"version": "0.3.1",
"version": "0.3.2",
"description": "A Karma plugin - adapter for Jasmine testing framework.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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