26 lines
704 B
TypeScript
26 lines
704 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { UpdateApplicationComponent } from './update-application.component';
|
|
|
|
describe('UpdateApplicationComponent', () => {
|
|
let component: UpdateApplicationComponent;
|
|
let fixture: ComponentFixture<UpdateApplicationComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ UpdateApplicationComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(UpdateApplicationComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|