angular.js/test/service/documentSpec.js

18 lines
283 B
JavaScript
Raw Normal View History

describe('$document', function() {
var scope;
beforeEach(function(){
scope = angular.scope();
});
afterEach(function(){
dealoc(scope);
});
it("should inject $document", function(){
expect(scope.$service('$document')).toEqual(jqLite(document));
});
});