member_webapp/@overflow/member/component/settings/totp/totp.component.spec.ts
crusader d59d9379f9 ing
2018-05-24 15:44:13 +09:00

26 lines
614 B
TypeScript

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