it('should respond with 200 Ok when admin user GETs Streetmix users data', () => {
    jwtMock.mockReturnValueOnce(mockAdminUser)
    return request(app)
      .get('/api/v1/users')
      .then((response) => {