summaryrefslogtreecommitdiff
path: root/web-ui/test
diff options
context:
space:
mode:
authorGiovane <giovaneliberato@gmail.com>2015-11-16 15:49:23 -0200
committerGiovane <giovaneliberato@gmail.com>2015-11-16 15:49:23 -0200
commit83c409e197da1784f9c3f8999a622a62003f85c6 (patch)
tree9e6ccc9add3fbe9223eefa95c92e478f654388a9 /web-ui/test
parent014916a26482b510c2e330c980117e2e240e6fd9 (diff)
Ignore quotes when removing tag information #503
Diffstat (limited to 'web-ui/test')
-rw-r--r--web-ui/test/spec/mail_view/ui/no_mails_available_pane.spec.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/web-ui/test/spec/mail_view/ui/no_mails_available_pane.spec.js b/web-ui/test/spec/mail_view/ui/no_mails_available_pane.spec.js
index 868efc76..157e6c47 100644
--- a/web-ui/test/spec/mail_view/ui/no_mails_available_pane.spec.js
+++ b/web-ui/test/spec/mail_view/ui/no_mails_available_pane.spec.js
@@ -11,5 +11,10 @@ describeComponent('mail_view/ui/no_mails_available_pane', function () {
this.setupComponent({tag: 'all', forSearch: 'search'});
expect(this.$node.html()).toMatch('<div class="text">NO RESULTS FOR: \'SEARCH\'.</div>');
});
+
+ it('show only tag information when listing all mails', function () {
+ this.setupComponent({tag: 'all', forSearch: 'in:all'});
+ expect(this.$node.html()).toMatch('<div class="text">NO EMAILS IN \'ALL\'.</div>');
+ });
});
});