Files
wgenerator/src/app/modules/guest/guest.component.spec.ts
2025-01-05 10:29:29 +01:00

25 lines
630 B
TypeScript

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