UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

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