UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

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