mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 07:19:18 +00:00
26 lines
668 B
TypeScript
26 lines
668 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { RegistrationComponent } from './registration.component';
|
|
|
|
describe('RegistrationComponent', () => {
|
|
let component: RegistrationComponent;
|
|
let fixture: ComponentFixture<RegistrationComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ RegistrationComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(RegistrationComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|