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