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