import { TestBed } from '@angular/core/testing'; import { VoiceService } from './voice.service'; describe('VoiceService', () => { let service: VoiceService; beforeEach(() => { TestBed.configureTestingModule({}); service = TestBed.inject(VoiceService); }); it('should be created', () => { expect(service).toBeTruthy(); }); });