summaryrefslogtreecommitdiffstats
path: root/js-old/tests/unit/service/LoadingSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/tests/unit/service/LoadingSpec.js')
-rw-r--r--js-old/tests/unit/service/LoadingSpec.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js-old/tests/unit/service/LoadingSpec.js b/js-old/tests/unit/service/LoadingSpec.js
new file mode 100644
index 000000000..ecb720730
--- /dev/null
+++ b/js-old/tests/unit/service/LoadingSpec.js
@@ -0,0 +1,26 @@
+/**
+ * Nextcloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
+describe('Loading', function () {
+ 'use strict';
+
+ beforeEach(module('News'));
+
+ it('should be not load by default', inject(function (Loading) {
+ expect(Loading.isLoading('global')).toBe(false);
+ expect(Loading.isLoading('content')).toBe(false);
+ expect(Loading.isLoading('autopaging')).toBe(false);
+ }));
+
+ it('should set loading', inject(function (Loading) {
+ Loading.setLoading('global', true);
+ expect(Loading.isLoading('global')).toBe(true);
+ }));
+
+}); \ No newline at end of file