import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CaCheckboxComponent } from './ca-checkbox.component'; describe('CaCheckboxComponent', () => { let component: CaCheckboxComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [CaCheckboxComponent] }) .compileComponents(); fixture = TestBed.createComponent(CaCheckboxComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });