Some checks failed
bangararaju.kottedi.in/portfolio-admin/pipeline/head There was a failure building this commit
26 lines
648 B
TypeScript
26 lines
648 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { provideHttpClientTesting } from '@angular/common/http/testing';
|
|
|
|
import { Resume } from './resume';
|
|
|
|
describe('Resume', () => {
|
|
let component: Resume;
|
|
let fixture: ComponentFixture<Resume>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Resume],
|
|
providers: [provideHttpClientTesting()]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Resume);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|