Files
talenttic-crm-app/src/app/pages/company-information/company-information.component.spec.ts
2023-04-25 09:17:32 +01:00

26 lines
711 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { CompanyInformationComponent } from './company-information.component';
describe('CompanyInformationComponent', () => {
let component: CompanyInformationComponent;
let fixture: ComponentFixture<CompanyInformationComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ CompanyInformationComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(CompanyInformationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});