it('should update the favorite color on the input field', fakeAsync(() => {
  component.favoriteColor = 'Blue';
  fixture.detectChanges();
  tick();
  const input = fixture.nativeElement.querySelector('input');
  expect(input.value).toBe('Blue');
}));