Skip to content

Commit bece881

Browse files
committed
add redundant test
1 parent 598ed5a commit bece881

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/async_sign.tests.js

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ describe('signing a token asynchronously', function() {
1818
});
1919
});
2020

21+
it('should work', function (done) {
22+
jwt.sign({abc: 1}, "secret", {}, function (err, res) {
23+
expect(err).to.not.exist();
24+
done();
25+
});
26+
});
27+
2128
it('should return error when secret is not a cert for RS256', function(done) {
2229
//this throw an error because the secret is not a cert and RS256 requires a cert.
2330
jwt.sign({ foo: 'bar' }, secret, { algorithm: 'RS256' }, function (err) {

0 commit comments

Comments
 (0)