16 lines
481 B
TypeScript
16 lines
481 B
TypeScript
import {inject, TestBed} from '@angular/core/testing';
|
|
|
|
import {ProductGroupListResolverService} from './product-group-list-resolver.service';
|
|
|
|
describe('ProductGroupListResolverService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [ProductGroupListResolverService]
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([ProductGroupListResolverService], (service: ProductGroupListResolverService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|