summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/mixins/with_mail_sandbox.spec.js
blob: 7f5c39a3d6a551385de04c95262c22e3cd6cfcf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
describeMixin('mixins/with_mail_sandbox', function() {
  'use strict';

  beforeEach(function() {
    this.setupComponent();
  });

  it('should open reply container', function () {
    var showContainerEvent = spyOnEvent(document, Pixelated.events.ui.replyBox.showReplyContainer);
    this.component.showMailOnSandbox(Pixelated.testData().parsedMail.html);
    expect(showContainerEvent).toHaveBeenTriggeredOn(document);
  });

});