bump package version to 1.5.0
[squeep-authentication-module] / test / stub-db.js
index 2d1ce7724eec8818067b8b7579a26cd178d2edf0..537c92b88859a7a40c104032aafe8965f72b363c 100644 (file)
@@ -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