summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/mail_view/ui/recipients/recipients.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/spec/mail_view/ui/recipients/recipients.spec.js')
-rw-r--r--web-ui/test/spec/mail_view/ui/recipients/recipients.spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web-ui/test/spec/mail_view/ui/recipients/recipients.spec.js b/web-ui/test/spec/mail_view/ui/recipients/recipients.spec.js
index 672cf4a3..6aa4589a 100644
--- a/web-ui/test/spec/mail_view/ui/recipients/recipients.spec.js
+++ b/web-ui/test/spec/mail_view/ui/recipients/recipients.spec.js
@@ -6,21 +6,21 @@ describeComponent('mail_view/ui/recipients/recipients',function () {
describe('initialization', function() {
it('adds recipients', function() {
- setupComponent({name: 'to', addresses: ['foobar@gmail.com'] });
+ this.setupComponent({name: 'to', addresses: ['foobar@gmail.com'] });
expect(this.component.attr.recipients.length).toBe(1);
});
it('does not trigger recipients updated events on initialization', function() {
recipientsUpdatedEvent = spyOnEvent(document, Pixelated.events.ui.recipients.updated);
- setupComponent({name: 'to', addresses: ['foobar@gmail.com'] });
+ this.setupComponent({name: 'to', addresses: ['foobar@gmail.com'] });
expect(recipientsUpdatedEvent).not.toHaveBeenTriggeredOn(document);
});
});
describe('adding recipients from the ui', function() {
beforeEach(function () {
- setupComponent();
+ this.setupComponent();
recipientsUpdatedEvent = spyOnEvent(document, Pixelated.events.ui.recipients.updated);
this.component.trigger(Pixelated.events.ui.recipients.entered, {name: 'to', addresses: ['foobar@gmail.com'] });
});