2019-09-18 15:02:21 +09:00

13 lines
343 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { ProtocolService } from './protocol.service';
describe('ProtocolService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: ProtocolService = TestBed.get(ProtocolService);
expect(service).toBeTruthy();
});
});