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