mp-common
Version:
This is XPO MarketPlace common libary
16 lines (12 loc) • 420 B
text/typescript
import { TestBed, inject } from '@angular/core/testing';
import { UserProfileService } from './user-profile.service';
describe('UserProfileService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [UserProfileService]
});
});
it('should be created', inject([UserProfileService], (service: UserProfileService) => {
expect(service).toBeTruthy();
}));
});