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