next-ucap-messenger/projects/ucap-webmessenger-ui/src/lib/dialogs/alert.dialog.component.spec.ts
2019-09-18 15:02:21 +09:00

25 lines
661 B
TypeScript

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