summaryrefslogtreecommitdiffstats
path: root/js/tests/unit/service/LoadingSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/unit/service/LoadingSpec.js')
-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