UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

26 lines (20 loc) 676 B
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ProgressComponent } from './progress.component'; describe('ProgressComponent', () => { let component: ProgressComponent; let fixture: ComponentFixture<ProgressComponent>; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [ProgressComponent] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ProgressComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });