Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
26 lines
626 B
TypeScript
26 lines
626 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AvatarComponent } from './avatar.component';
|
|
|
|
describe('AvatarComponent', () => {
|
|
let component: AvatarComponent;
|
|
let fixture: ComponentFixture<AvatarComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ AvatarComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(AvatarComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|