ticketfrei3/frontend/src/app/auth/password-reset/set-password/set-password.component.spec.ts

25 lines
672 B
TypeScript

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