Socket
Socket
Sign inDemoInstall

jasmine-dom

Package Overview
Dependencies
52
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.3 to 0.2.4

7

lib/jasmine-dom/reporter-junit.js

@@ -17,3 +17,3 @@ function JunitXmlReporter(opt){

return this.report;
}
};

@@ -24,2 +24,5 @@ JunitXmlReporter.prototype.reportSpecResults = function(spec){

};
var e = function(s){
return s.replace(/\</gi, '&lt;').replace(/\>/gi, '&gt;');
}

@@ -32,2 +35,4 @@ var specName = s(this.currentGroupName) + "." + s(spec.suite.description) + "." + s(spec.description);

var name = result.type + " " + result.matcherName + " " + (result.expected ? result.expected : "");
name = e(name);
specName = e(specName);
if(result.passed()){

@@ -34,0 +39,0 @@ this.xml += '<testcase classname="'+specName+'" name="'+name+'" time="'+result.time+'"/>';

2

package.json
{
"name" : "jasmine-dom"
, "version" : "0.2.3"
, "version" : "0.2.4"

@@ -5,0 +5,0 @@ , "description" : "Run your jasmine html SpecRunner in node.js."

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