it('should return true when nickname is filled', function() {
      contactUpdateDataService.contact = { nickname: 'yolo' };
      initController();
      expect(scope.shouldDisplayHome()).to.be.true;
    });