it('should emit an event when signed in', () => {
    spyOn(component.signIn, 'emit');
    component.handleSignIn();
    expect(component.signIn.emit).toHaveBeenCalledTimes(1);
  });