X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fstub-db.js;h=d8cb0cd1f00bbc7babee4491727a4a7569e3f787;hb=726cd980f0ed5588cfe8cbb2d994d5e4aef6e292;hp=f973b8d417d0184ee3fdb61b9cf5230d2dec358c;hpb=b0103b0d496262c438b40bc20304081dbfe41e73;p=squeep-indie-auther diff --git a/test/stub-db.js b/test/stub-db.js index f973b8d..d8cb0cd 100644 --- a/test/stub-db.js +++ b/test/stub-db.js @@ -8,6 +8,7 @@ class StubDatabase extends Base { return [ ...super._stubFns, 'almanacGetAll', + 'almanacUpsert', 'authenticationGet', 'authenticationSuccess', 'authenticationUpsert', @@ -27,9 +28,12 @@ class StubDatabase extends Base { 'tokenGetByCodeId', 'tokenRefreshRevokeByCodeId', 'tokenRevokeByCodeId', - 'tokensGetByIdentifier', + 'tokensGetByIdentifier', + 'ticketRedeemed', + 'ticketTokenPublished', + 'ticketTokenGetUnpublished', ]; } } -module.exports = StubDatabase; \ No newline at end of file +module.exports = StubDatabase;