import { ComponentFixture, TestBed } from '@angular/core/testing'; import { EstraEComponent } from './estra-e.component'; describe('EstraEComponent', () => { let component: EstraEComponent; let fixture: ComponentFixture<EstraEComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ EstraEComponent ] }) .compileComponents(); fixture = TestBed.createComponent(EstraEComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });