( db: Database, redirectUri: string = 'https://localhost', scopes: string = 'read follow' )
| 69 | } |
| 70 | |
| 71 | export async function createTestClient( |
| 72 | db: Database, |
| 73 | redirectUri: string = 'https://localhost', |
| 74 | scopes: string = 'read follow' |
| 75 | ): Promise<Client> { |
| 76 | return createClient(db, 'test client', redirectUri, scopes, 'https://cloudflare.com') |
| 77 | } |
| 78 | |
| 79 | type TestQueue = Queue<any> & { messages: Array<any> } |
| 80 |
no test coverage detected