aboutsummaryrefslogtreecommitdiffstats
path: root/test/service/documentSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/service/documentSpec.js')
-rw-r--r--test/service/documentSpec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/service/documentSpec.js b/test/service/documentSpec.js
index 79c752e4..885331e4 100644
--- a/test/service/documentSpec.js
+++ b/test/service/documentSpec.js
@@ -3,17 +3,17 @@
describe('$document', function() {
var scope;
- beforeEach(function(){
+ beforeEach(function() {
scope = angular.scope();
});
- afterEach(function(){
+ afterEach(function() {
dealoc(scope);
});
- it("should inject $document", function(){
+ it("should inject $document", function() {
expect(scope.$service('$document')).toEqual(jqLite(document));
});
});