coreui-angular-ex
Version:
CoreUI Components Library for Angular
26 lines (20 loc) • 641 B
text/typescript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ColComponent } from './col.component';
describe('ColComponent', () => {
let component: ColComponent;
let fixture: ComponentFixture<ColComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [ColComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ColComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});