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