diff src/app/services/audio-player.service.spec.ts @ 31:f6ea31a3b1a3

Encapsulate audio playing and decoding logic in a ng2 service, provided by the root module.
author Lucas Thompson <dev@lucas.im>
date Wed, 30 Nov 2016 10:21:27 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/app/services/audio-player.service.spec.ts	Wed Nov 30 10:21:27 2016 +0000
@@ -0,0 +1,16 @@
+/* tslint:disable:no-unused-variable */
+
+import { TestBed, async, inject } from '@angular/core/testing';
+import { AudioPlayerService } from './audio-player.service';
+
+describe('AudioPlayerService', () => {
+  beforeEach(() => {
+    TestBed.configureTestingModule({
+      providers: [AudioPlayerService]
+    });
+  });
+
+  it('should ...', inject([AudioPlayerService], (service: AudioPlayerService) => {
+    expect(service).toBeTruthy();
+  }));
+});