Files
barker/bookie/src/app/product-group/product-group.service.spec.ts
Amritanshu 459ab244ff Tax done
2019-06-15 23:09:43 +05:30

16 lines
407 B
TypeScript

import {inject, TestBed} from '@angular/core/testing';
import {ProductGroupService} from './product-group.service';
describe('ProductGroupService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [ProductGroupService]
});
});
it('should be created', inject([ProductGroupService], (service: ProductGroupService) => {
expect(service).toBeTruthy();
}));
});