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