mirror of
https://github.com/LanceGin/jsotp.git
synced 2026-05-05 00:00:03 +08:00
add: TOTP.now function
This commit is contained in:
+2
-2
@@ -4,11 +4,11 @@ var assert = require('assert');
|
||||
describe('TOTP module test', function() {
|
||||
|
||||
var TOTP = totp.TOTP;
|
||||
var a = new TOTP("BASE32_ENCODED_SECRET");
|
||||
var a = new TOTP("J22U6B3WIWRRBTAV");
|
||||
|
||||
describe('now() function', function() {
|
||||
it("should print 'TOTP.now'", function() {
|
||||
assert.equal("TOTP.now", a.now());
|
||||
assert.equal("string", typeof(a.now()));
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user