X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;ds=sidebyside;f=test%2Fstub-db.js;h=537c92b88859a7a40c104032aafe8965f72b363c;hb=ff66dd49a1b54935a20ea6e15bd036b8acd5e170;hp=2d1ce7724eec8818067b8b7579a26cd178d2edf0;hpb=dd173e6b450cbba8100883514610c9fde83d050a;p=squeep-authentication-module diff --git a/test/stub-db.js b/test/stub-db.js index 2d1ce77..537c92b 100644 --- a/test/stub-db.js +++ b/test/stub-db.js @@ -1,7 +1,7 @@ /* eslint-disable security/detect-object-injection */ 'use strict'; -const sinon = require('sinon'); // eslint-disable-line node/no-unpublished-require +const sinon = require('sinon'); const spyFns = [ 'context', @@ -9,9 +9,12 @@ const spyFns = [ ]; const stubFns = [ - 'authenticationSuccess', 'authenticationGet', 'authenticationUpsert', + 'authenticationSuccess', + 'authenticationUpdateCredential', + 'authenticationUpdateOTPKey', + 'resourceGet', ]; const stubDatabase = { @@ -25,7 +28,7 @@ const stubDatabase = { }; stubFns.forEach((fn) => { - stubDatabase[fn] = () => {}; + stubDatabase[fn] = () => undefined; }); module.exports = stubDatabase; \ No newline at end of file