summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/mixins
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/spec/mixins')
-rw-r--r--web-ui/test/spec/mixins/with_mail_edit_base.spec.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/web-ui/test/spec/mixins/with_mail_edit_base.spec.js b/web-ui/test/spec/mixins/with_mail_edit_base.spec.js
index 35ec0eb6..10b7d04c 100644
--- a/web-ui/test/spec/mixins/with_mail_edit_base.spec.js
+++ b/web-ui/test/spec/mixins/with_mail_edit_base.spec.js
@@ -17,21 +17,29 @@ describeMixin('mixins/with_mail_edit_base', function () {
describe('initialization', function() {
it('should enable send button when rendering with recipients', function() {
var enableSendButtonEvent = spyOnEvent(document, Pixelated.events.ui.sendbutton.enable);
-
this.component.render(function() {}, {
recipients: { to: ['foobar@mail.com'], cc: [] }
});
+ expect(enableSendButtonEvent).toHaveBeenTriggeredOn(document);
+ enableSendButtonEvent = spyOnEvent(document, Pixelated.events.ui.sendbutton.enable);
+ this.component.render(function() {}, {
+ recipients: { to: ['foobar@mail.com'], cc: undefined }
+ });
expect(enableSendButtonEvent).toHaveBeenTriggeredOn(document);
});
it('should not enable send button when rendering without recipients', function() {
var enableSendButtonEvent = spyOnEvent(document, Pixelated.events.ui.sendbutton.enable);
-
this.component.render(function() {}, {
recipients: { to: [], cc: [] }
});
+ expect(enableSendButtonEvent).not.toHaveBeenTriggeredOn(document);
+ enableSendButtonEvent = spyOnEvent(document, Pixelated.events.ui.sendbutton.enable);
+ this.component.render(function() {}, {
+ recipients: { to: undefined, cc: undefined }
+ });
expect(enableSendButtonEvent).not.toHaveBeenTriggeredOn(document);
});
});