Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "cryptorjs", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Encrypt and decrypt string using a key", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,2 +0,2 @@ | ||
# Cryptorjs | ||
# Cryptorjs [![Build Status](https://travis-ci.org/fabioricali/Cryptor.svg?branch=master)](https://travis-ci.org/fabioricali/Cryptor) | ||
Encrypt and decrypt string using a key | ||
@@ -3,0 +3,0 @@ |
@@ -20,3 +20,3 @@ /** | ||
it('should be error', function (done) { | ||
it('should be error if key missing', function (done) { | ||
try{ | ||
@@ -29,2 +29,10 @@ new cryptor() | ||
it('should be error if key is empty', function (done) { | ||
try{ | ||
new cryptor('') | ||
}catch (error) { | ||
done(); | ||
} | ||
}); | ||
}); |
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
42663
15
74