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