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