summaryrefslogtreecommitdiffstats
path: root/js/tests/unit/service
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 12:26:42 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 12:26:42 +0200
commitd6625bc44524500e11c9072c6ba294112cd52d43 (patch)
treecd1e93b6b21434d6aba7725821d811d312d687f7 /js/tests/unit/service
parent866f17fe43f841691a8858d671962d623369d3b3 (diff)
fix protractor tests
Diffstat (limited to 'js/tests/unit/service')
-rw-r--r--js/tests/unit/service/LoadingSpec.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/tests/unit/service/LoadingSpec.js b/js/tests/unit/service/LoadingSpec.js
new file mode 100644
index 000000000..cae049c99
--- /dev/null
+++ b/js/tests/unit/service/LoadingSpec.js
@@ -0,0 +1,24 @@
+/**
+ * ownCloud - 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 2012, 2014
+ */
+describe('Loading', function () {
+ 'use strict';
+
+ beforeEach(module('News'));
+
+ it('should be not load by default', inject(function (Loading) {
+ expect(Loading.isLoading()).toBe(false);
+ }));
+
+ it('should set loading', inject(function (Loading) {
+ Loading.setLoading(true);
+ expect(Loading.isLoading()).toBe(true);
+ }));
+
+}); \ No newline at end of file