common.service.spec.ts
416 Bytes
/* tslint:disable:no-unused-variable */
import { TestBed, async, inject } from '@angular/core/testing';
import { CommonService } from './common.service';
describe('Service: Common', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [CommonService]
});
});
it('should ...', inject([CommonService], (service: CommonService) => {
expect(service).toBeTruthy();
}));
});