mirror of
https://github.com/dyiop/astute.git
synced 2025-04-09 06:40:20 -04:00
26 lines
650 B
TypeScript
26 lines
650 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ModalFormComponent } from './modal-form.component';
|
|
|
|
describe('ModalFormComponent', () => {
|
|
let component: ModalFormComponent;
|
|
let fixture: ComponentFixture<ModalFormComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ ModalFormComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ModalFormComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|