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