occamsrazor
Advanced tools
Comparing version 9.1.4 to 9.1.5
Changelog | ||
9.1.4 (2018/10/17) | ||
9.1.5 (2018/10/17) | ||
================== | ||
- now using stable sort on registry. That makes output more predictable | ||
- fixing test error | ||
@@ -7,0 +8,0 @@ 9.1.3 (2018/02/27) |
{ | ||
"name": "occamsrazor", | ||
"version": "9.1.4", | ||
"version": "9.1.5", | ||
"description": "A plugin system for Javascript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -83,3 +83,3 @@ /* eslint-env node, mocha */ | ||
it('triggers all handlers', function () { | ||
it('triggers all handlers', function (done) { | ||
var adapter = occamsrazor() | ||
@@ -97,5 +97,6 @@ adapter.on(isNumber, function (n) { | ||
assert.equal(err, null) | ||
assert.deepEqual(res, [12, 4, 13, 9]) | ||
assert.deepEqual(res, [4, 12, 9, 13]) | ||
done() | ||
}) | ||
}) | ||
}) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68133
1205