blob: 40fc6bd585e86b608e5d8f01b335727d79048b07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { EditApplicationComponent } from './edit-application.component';
describe('EditApplicationComponent', () => {
let component: EditApplicationComponent;
let fixture: ComponentFixture<EditApplicationComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ EditApplicationComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(EditApplicationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
|