describe('# GET /clients/:id', () => {
    it('should show a client', (done) => {
      adminSesh.get(`/clients/${testClient.id}`)
        .expect(httpStatus.OK)
        .then((res) => {