it('should handle errors', async () => {
    db.query.mockImplementation(() => Promise.reject('nope'))

    try {
      await top250(null, { limit: 200, offset: 0 }, { db })