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