summaryrefslogtreecommitdiffstats
path: root/js/tests
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-23 13:47:16 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-23 13:47:16 +0200
commit02436eae6d660ebf709d987836fb657dc63f5bce (patch)
tree3fe23d86d08fab7dea63d99bacaeb108f2dc55f5 /js/tests
parent64d99e57d008f9cf3105b0ba7810d9860037ca8a (diff)
dont show unread articles when there are no feeds
Diffstat (limited to 'js/tests')
-rw-r--r--js/tests/services/businesslayer/subsriptionsbusinesslayerSpec.coffee5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/tests/services/businesslayer/subsriptionsbusinesslayerSpec.coffee b/js/tests/services/businesslayer/subsriptionsbusinesslayerSpec.coffee
index 090433fbd..c0d674bda 100644
--- a/js/tests/services/businesslayer/subsriptionsbusinesslayerSpec.coffee
+++ b/js/tests/services/businesslayer/subsriptionsbusinesslayerSpec.coffee
@@ -60,8 +60,11 @@ describe 'SubscriptionsBusinessLayer', ->
expect(@SubscriptionsBusinessLayer.isVisible()).toBe(false)
- it 'should always be visible if its the active feed', =>
+ it 'should always be visible if its the active feed and there are feeds', =>
@ActiveFeed.handle({type: @FeedType.Subscriptions, id:0})
+ expect(@SubscriptionsBusinessLayer.isVisible()).toBe(false)
+
+ @FeedModel.add({id: 3, unreadCount: 0, url: 'hi'})
expect(@SubscriptionsBusinessLayer.isVisible()).toBe(true)