We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed8064 commit a4fc483Copy full SHA for a4fc483
1 file changed
spec/Adapters/Auth/line.spec.js
@@ -16,7 +16,7 @@ describe('LineAdapter', function () {
16
const jwtClaims = {
17
iss: 'https://access.line.me',
18
aud: 'validClientId',
19
- exp: Date.now() + 1000,
+ exp: Math.floor(Date.now() / 1000) + 3600,
20
sub: 'mockUserId',
21
...claims,
22
};
0 commit comments