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