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