barker/bookie/src/app/product/product-list-resolver.service.spec.ts
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

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();
}));
});