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