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