Newer
Older
import {async, ComponentFixture, TestBed} from '@angular/core/testing';

Sebastian-Ion TINCU
committed
import {DialogComponent} from './dialog.component';

Sebastian-Ion TINCU
committed
describe('DialogComponent', () => {
let component: DialogComponent;
let fixture: ComponentFixture<DialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ DialogComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(DialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});