ng2-date-picker-pda-forked
Version:
16 lines (12 loc) • 343 B
text/typescript
import { TestBed, inject } from '@angular/core/testing';
import { GaService } from './ga.service';
describe('GaService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [GaService]
});
});
it('should ...', inject([GaService], (service: GaService) => {
expect(service).toBeTruthy();
}));
});