aboutsummaryrefslogtreecommitdiffstats
path: root/test/servicesSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/servicesSpec.js')
-rw-r--r--test/servicesSpec.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/servicesSpec.js b/test/servicesSpec.js
index cff79ae4..b2cac224 100644
--- a/test/servicesSpec.js
+++ b/test/servicesSpec.js
@@ -24,16 +24,6 @@ describe("service", function(){
expect(scope.$service('$window')).toEqual(window);
});
- xit('should add stylesheets', function(){
- scope.$document = {
- getElementsByTagName: function(name){
- expect(name).toEqual('LINK');
- return [];
- }
- };
- scope.$document.addStyleSheet('css/angular.css');
- });
-
describe("$log", function(){
it('should use console if present', function(){
var logger = "";