Files
wgenerator/src/app/modules/guest/guest.component.spec.ts
2026-03-16 18:38:46 +01:00

25 lines
609 B
TypeScript

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