interactive-mining/interactive-mining-angular-.../src/app/manageprofiles/manageprofiles.component.sp...

26 lines
688 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ManageprofilesComponent } from './manageprofiles.component';
describe('ManageprofilesComponent', () => {
let component: ManageprofilesComponent;
let fixture: ComponentFixture<ManageprofilesComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ManageprofilesComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ManageprofilesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});