Skip to content

Commit 9ae3f20

Browse files
MitMaroziluvatar
authored andcommitted
Implement async/sync tests for exp claim (#536)
Refactor existing tests for the exp claim to use the async/sync test helpers. This required fixing a case where an error was improperly handled in the async case.
1 parent 342b07b commit 9ae3f20

File tree

2 files changed

+224
-143
lines changed

2 files changed

+224
-143
lines changed

sign.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,12 @@ module.exports = function (payload, secretOrPrivateKey, options, callback) {
154154
}
155155

156156
if (typeof options.expiresIn !== 'undefined' && typeof payload === 'object') {
157-
payload.exp = timespan(options.expiresIn, timestamp);
157+
try {
158+
payload.exp = timespan(options.expiresIn, timestamp);
159+
}
160+
catch (err) {
161+
return failure(err);
162+
}
158163
if (typeof payload.exp === 'undefined') {
159164
return failure(new Error('"expiresIn" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60'));
160165
}

0 commit comments

Comments
 (0)