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