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