interactive-mining/interactive-mining-angular-.../src/app/manageprofiles/manageprofiles.service.spec.ts

16 lines
422 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { ManageprofilesService } from './manageprofiles.service';
describe('ManageprofilesService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [ManageprofilesService]
});
});
it('should be created', inject([ManageprofilesService], (service: ManageprofilesService) => {
expect(service).toBeTruthy();
}));
});