digitaler-frieden/frontend/src/app/page/onboarding/verification/verification.component.spec.ts

24 lines
634 B
TypeScript

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