it('should not have inactive feature toggles checked', () => {
    new Mock<FlipperService>(mockFlipperService).extend({ isEnabled: () => false });
    fixture.detectChanges();
    const checkboxes = fixture.debugElement.queryAll(By.css('input[type=checkbox]:not(:checked)'));
    expect(checkboxes.length).toBe(5);