summaryrefslogtreecommitdiff
path: root/web-ui/test
diff options
context:
space:
mode:
authorAlexandre Pretto Nunes <anunes@thoughtworks.com>2014-12-19 15:34:38 -0200
committerAlexandre Pretto Nunes <anunes@thoughtworks.com>2014-12-19 15:34:53 -0200
commit7f6613813a4238382fe177dad81287b026598545 (patch)
tree61f45bd3151a3d69a171ed804623c0c1f62411d7 /web-ui/test
parent4cfb69848e0a65c6282bfdcbc76dd5008ed9adba (diff)
Don't clear selected mail when opening a tag
Diffstat (limited to 'web-ui/test')
-rw-r--r--web-ui/test/spec/tags/ui/tag.spec.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/web-ui/test/spec/tags/ui/tag.spec.js b/web-ui/test/spec/tags/ui/tag.spec.js
index 1f76ebe3..3bc0c7fc 100644
--- a/web-ui/test/spec/tags/ui/tag.spec.js
+++ b/web-ui/test/spec/tags/ui/tag.spec.js
@@ -20,14 +20,12 @@ describeComponent('tags/ui/tag', function () {
it('selects the tag on click', function () {
var tagSelectEvent = spyOnEvent(document, Pixelated.events.ui.tag.select);
- var cleanSelectedEvent = spyOnEvent(document, Pixelated.events.ui.mails.cleanSelected);
this.component.$node.click();
expect(this.component.attr.selected).toBeTruthy();
expect(this.$node.attr('class')).toMatch('selected');
expect(tagSelectEvent).toHaveBeenTriggeredOnAndWith(document, { tag: 'inbox' });
- expect(cleanSelectedEvent).toHaveBeenTriggeredOn(document);
});
it('should remove selected class when selecting a different tag', function () {