Skip to content

Commit 88bc965

Browse files
MitMaroziluvatar
authored andcommitted
Implement async/sync tests for nbf claim (#537)
Refactor the existing tests for the nbf claim to use the async/sync test helpers. This required fixing a case where an error was improperly handled for an async call.
1 parent 9ae3f20 commit 88bc965

File tree

2 files changed

+220
-141
lines changed

2 files changed

+220
-141
lines changed

sign.js

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

149149
if (typeof options.notBefore !== 'undefined') {
150-
payload.nbf = timespan(options.notBefore, timestamp);
150+
try {
151+
payload.nbf = timespan(options.notBefore, timestamp);
152+
}
153+
catch (err) {
154+
return failure(err);
155+
}
151156
if (typeof payload.nbf === 'undefined') {
152157
return failure(new Error('"notBefore" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60'));
153158
}

0 commit comments

Comments
 (0)