guest page

This commit is contained in:
2021-05-21 09:57:43 +02:00
parent 19b28453d3
commit 932c6a2a63
11 changed files with 172 additions and 5 deletions

View File

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