describe('# GET /entities/:id', () => {
    it('should show an entity', (done) => {
      adminSesh.get(`/entities/${testEntity.id}`)
        .expect(httpStatus.OK)
        .then((res) => {