summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/mail_view/ui/mail_actions.spec.js
diff options
context:
space:
mode:
authorPatrick Maia <pixelated-team+patrick@thoughtworks.com>2014-08-08 17:51:33 -0300
committerPatrick Maia <patrickjourdanmaia@gmail.com>2014-08-08 17:51:33 -0300
commit97e762a0832593031ae71ab1e11d4c0e377a00f4 (patch)
tree213e835f4effbaf97f0922e5941065b1329d0501 /web-ui/test/spec/mail_view/ui/mail_actions.spec.js
parentf22a6a32e901f52b2b3f2b3fd8625c43302ff001 (diff)
replaces Smail by Pixelated in all js files
Diffstat (limited to 'web-ui/test/spec/mail_view/ui/mail_actions.spec.js')
-rw-r--r--web-ui/test/spec/mail_view/ui/mail_actions.spec.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/web-ui/test/spec/mail_view/ui/mail_actions.spec.js b/web-ui/test/spec/mail_view/ui/mail_actions.spec.js
index 93db0193..cee4f689 100644
--- a/web-ui/test/spec/mail_view/ui/mail_actions.spec.js
+++ b/web-ui/test/spec/mail_view/ui/mail_actions.spec.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
describeComponent('mail_view/ui/mail_actions', function () {
'use strict';
@@ -6,7 +6,7 @@ describeComponent('mail_view/ui/mail_actions', function () {
var testData;
beforeEach(function(){
- testData = Smail.testData();
+ testData = Pixelated.testData();
setupComponent(testData);
});
@@ -27,7 +27,7 @@ describeComponent('mail_view/ui/mail_actions', function () {
it('triggers a show reply box event when clicking on reply-button-top', function(){
- var showReplyBoxEvent = spyOnEvent(document, Smail.events.ui.replyBox.showReply);
+ var showReplyBoxEvent = spyOnEvent(document, Pixelated.events.ui.replyBox.showReply);
this.component.select('replyButtonTop').click();
@@ -36,7 +36,7 @@ describeComponent('mail_view/ui/mail_actions', function () {
it('triggers a show reply all box event when clicking on reply-button-top and hide more actions list', function(){
- var showReplyAllEvent = spyOnEvent(document, Smail.events.ui.replyBox.showReplyAll);
+ var showReplyAllEvent = spyOnEvent(document, Pixelated.events.ui.replyBox.showReplyAll);
this.component.select('viewMoreActions').click();
this.component.select('replyAllButtonTop').click();
@@ -49,7 +49,7 @@ describeComponent('mail_view/ui/mail_actions', function () {
it('triggers a delete event when clicking on delete-button-top', function(){
- var deleteEvent = spyOnEvent(document, Smail.events.ui.mail.delete);
+ var deleteEvent = spyOnEvent(document, Pixelated.events.ui.mail.delete);
this.component.select('viewMoreActions').click();
this.component.select('deleteButtonTop').click();