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