diff options
author | Giovane <giovaneliberato@gmail.com> | 2016-01-27 15:44:17 -0200 |
---|---|---|
committer | Giovane <giovaneliberato@gmail.com> | 2016-01-27 16:06:26 -0200 |
commit | ec80088330eff5f44e8cc8eaab04c83c259b9098 (patch) | |
tree | 4aa75950bff5fd6efb8b79b4f9484dd1ac0e64c6 /web-ui/test/spec/mail_view/ui | |
parent | 0881d95faba366946a1942bf03eec2cb18318aaa (diff) |
Keep attachments when forwarding a mail #509
- Extract the attachment file box to a partial
- Adds logic to show/hide the download arrow icon
Diffstat (limited to 'web-ui/test/spec/mail_view/ui')
-rw-r--r-- | web-ui/test/spec/mail_view/ui/attachment_list.spec.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web-ui/test/spec/mail_view/ui/attachment_list.spec.js b/web-ui/test/spec/mail_view/ui/attachment_list.spec.js index 86a9297f..2308c227 100644 --- a/web-ui/test/spec/mail_view/ui/attachment_list.spec.js +++ b/web-ui/test/spec/mail_view/ui/attachment_list.spec.js @@ -32,8 +32,11 @@ describeMixin('mail_view/ui/attachment_list', function () { $(document).trigger(Pixelated.events.mail.uploadedAttachment, stubAttachment); - var expected_li = '<li><a href="/attachment/faked?filename=haha.txt&encoding=base64">haha.txt <span class="attachment-size"> (4.39 Kb)</span></a></li>'; - expect(this.component.select('attachmentListItem').html()).toEqual(expected_li); + expect(this.component.select('attachmentListItem').html()).toContain('href="/attachment/faked'); + expect(this.component.select('attachmentListItem').html()).toContain('filename=haha.txt'); + expect(this.component.select('attachmentListItem').html()).toContain('encoding=base64'); + expect(this.component.select('attachmentListItem').html()).toContain('haha.txt'); + expect(this.component.select('attachmentListItem').html()).toContain('(4.39 Kb'); }); xit('should start uploading attachments', function () { |