Comparing version 1.5.1 to 1.6.0
@@ -0,1 +1,11 @@ | ||
<a name="1.6.0"></a> | ||
# [1.6.0](https://github.com/lokesh-coder/filament/compare/v1.5.1...v1.6.0) (2017-07-25) | ||
### Features | ||
* fix travis condiftional ([a542ba8](https://github.com/lokesh-coder/filament/commit/a542ba8)) | ||
<a name="1.5.1"></a> | ||
@@ -2,0 +12,0 @@ ## [1.5.1](https://github.com/lokesh-coder/filament/compare/v1.5.0...v1.5.1) (2017-07-25) |
{ | ||
"name": "filament_", | ||
"version": "1.5.1", | ||
"version": "1.6.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
var assert = require('assert'); | ||
describe('Array', function () { | ||
describe('#indexOf()', function () { | ||
it('should return -1 when the value is not present ', function () { | ||
assert.equal(-1, [1, 2, 3].indexOf(9)); | ||
it('should fail and pass ', function () { | ||
assert.equal(1, [1, 2, 3].indexOf(2)); | ||
}); | ||
}); | ||
}); |
Sorry, the diff of this file is not supported yet
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
138085