summaryrefslogtreecommitdiffstats
path: root/js/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 14:17:55 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 14:17:55 +0200
commit145ba6a487657c9864500c94dd3a89d9af8f4a87 (patch)
tree0f529b63d82e4f391dc64fb9ec1b9add497759e7 /js/tests
parent9d3de6d0959e73096ce0fa0ad9f6f7c702b0e0a8 (diff)
add some notes
Diffstat (limited to 'js/tests')
-rw-r--r--js/tests/unit/service/LoadingSpec.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/js/tests/unit/service/LoadingSpec.js b/js/tests/unit/service/LoadingSpec.js
index cae049c99..0067b6015 100644
--- a/js/tests/unit/service/LoadingSpec.js
+++ b/js/tests/unit/service/LoadingSpec.js
@@ -13,12 +13,13 @@ describe('Loading', function () {
beforeEach(module('News'));
it('should be not load by default', inject(function (Loading) {
- expect(Loading.isLoading()).toBe(false);
+ expect(Loading.isLoading('global')).toBe(false);
+ expect(Loading.isLoading('content')).toBe(false);
}));
it('should set loading', inject(function (Loading) {
- Loading.setLoading(true);
- expect(Loading.isLoading()).toBe(true);
+ Loading.setLoading('global', true);
+ expect(Loading.isLoading('global')).toBe(true);
}));
}); \ No newline at end of file