Separates the Subsonic Service into its own file.

Adds test stubs for the subsonic controller and subsonic service.

Conflicts:
	js/service.js
This commit is contained in:
Hyzual 2014-10-27 22:28:51 +01:00
parent 55c7905217
commit d6104aa573
4 changed files with 819 additions and 803 deletions

View file

@ -0,0 +1,9 @@
describe("subsonicService", function() {
'use strict';
beforeEach(module('JamStash'));
it("should exist", inject(function(subsonic) {
expect(subsonic).toBeDefined();
}));
});