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