Socket
Socket
Sign inDemoInstall

testee-client

Package Overview
Dependencies
41
Maintainers
4
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.2 to 0.5.3

dist/testee.js

2

package.json
{
"name": "testee-client",
"version": "0.5.2",
"version": "0.5.3",
"description": "Testee testing framework client adapters",

@@ -5,0 +5,0 @@ "main": "src/index",

@@ -56,3 +56,7 @@ var _ = {

// so create the first test in order to fail it.
data = data.parent.tests[0];
var test;
data.parent.eachTest(function(t) {
test = test || t;
})
data = test || data;
diff = self.diff(data);

@@ -62,3 +66,5 @@ self.api['test'](diff);

// after all hook. apply to last test, which has already ran
data = data.parent.tests[data.parent.tests.length - 1];
data.parent.eachTest(function(t) {
data = t;
})
}

@@ -65,0 +71,0 @@ }

@@ -36,3 +36,3 @@ /*

} else {
assert.equal(expected, current, name + ' ' + key + ' === ' + expected);
assert.equal(current, expected, name + ' ' + key + ' === ' + expected);
}

@@ -39,0 +39,0 @@ }

Sorry, the diff of this file is not supported yet

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