
Removes many injected params that weren't used at all in it. Removes the old commented getStarred function from the subsonic service.
19 lines
No EOL
466 B
JavaScript
19 lines
No EOL
466 B
JavaScript
describe("Subsonic controller", function() {
|
|
'use strict';
|
|
|
|
var $scope, subsonicCtrl;
|
|
/*
|
|
beforeEach(function() {
|
|
module('jamstash.subsonic.ctrl');
|
|
|
|
inject(function ($controller, $rootScope, $routeParams, utils, globals, map, subsonic, notifications) {
|
|
$scope = $rootScope.$new();
|
|
subsonicCtrl = $controller($scope, $rootScope, $routeParams, utils, globals, map, subsonic, notifications);
|
|
});
|
|
});
|
|
|
|
it("should behave...", function() {
|
|
|
|
});
|
|
*/
|
|
}); |