25 lines
630 B
TypeScript
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();
|
|
});
|
|
});
|