checkbutton.component.spec.ts 667 B

1234567891011121314151617181920212223242526
  1. import { async, ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { CheckbuttonComponent } from './checkbutton.component';
  3. describe('CheckbuttonComponent', () => {
  4. let component: CheckbuttonComponent;
  5. let fixture: ComponentFixture<CheckbuttonComponent>;
  6. beforeEach(async(() => {
  7. TestBed.configureTestingModule({
  8. declarations: [ CheckbuttonComponent ]
  9. })
  10. .compileComponents();
  11. }));
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(CheckbuttonComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should be created', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });