summaryrefslogtreecommitdiffstats
path: root/js/tests/services/businesslayer/subsriptionsbusinesslayerSpec.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/services/businesslayer/subsriptionsbusinesslayerSpec.coffee')
-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)