diff options
Diffstat (limited to 'test/AngularSpec.js')
| -rw-r--r-- | test/AngularSpec.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 9f77d3ea..9a1a20c7 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -514,12 +514,6 @@ describe('angular', function(){ expect(angular.scope().$service('svc2')).toEqual('svc2-svc1'); }); - it('should inject infered dependencies when $inject is missing', function() { - angular.service('svc1', function() { return 'svc1'; }); - angular.service('svc2', function(svc1) { return 'svc2-' + svc1; }); - expect(angular.scope().$service('svc2')).toEqual('svc2-svc1'); - }); - it('should eagerly instantiate a service if $eager is true', function() { var log = []; angular.service('svc1', function() { log.push('svc1'); }, {$eager: true}); |
