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