1 /* eslint-disable security/detect-object-injection */
4 const { StubDatabase: Base
} = require('@squeep/test-helper'); // eslint-disable-line node/no-unpublished-require
6 class StubDatabase
extends Base
{
13 'authenticationSuccess',
14 'authenticationUpsert',
15 'authenticationUpdateCredential',
16 'authenticationUpdateOTPKey',
17 'profileIdentifierInsert',
20 'profileScopesSetAll',
21 'profilesScopesByIdentifier',
31 'tokenRefreshRevokeByCodeId',
32 'tokenRevokeByCodeId',
33 'tokensGetByIdentifier',
35 'ticketTokenPublished',
36 'ticketTokenGetUnpublished',
41 module
.exports
= StubDatabase
;