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