leejinho ac76cbb1c3 [대상향]
개인정보처리방침 > 이용 주의사항 으로 변경처리
2019-12-15 14:49:52 +09:00

25 lines
667 B
TypeScript

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