it('should call enable on the service when you check a disabled toggle', () => {
    new Mock<FlipperService>(mockFlipperService).extend({ isEnabled: () => false });
    fixture.detectChanges();
    const unchecked = fixture.debugElement.query(By.css('#bar'));
    unchecked.nativeElement.click();