ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
22 lines (17 loc) • 566 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { CardComponent } from './card.component';
describe('CardComponent', () => {
let component: CardComponent;
let fixture: ComponentFixture<CardComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [CardComponent]
});
fixture = TestBed.createComponent(CardComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});