summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/mail_view/ui/draft_button.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/spec/mail_view/ui/draft_button.spec.js')
-rw-r--r--web-ui/test/spec/mail_view/ui/draft_button.spec.js40
1 files changed, 0 insertions, 40 deletions
diff --git a/web-ui/test/spec/mail_view/ui/draft_button.spec.js b/web-ui/test/spec/mail_view/ui/draft_button.spec.js
deleted file mode 100644
index de607507..00000000
--- a/web-ui/test/spec/mail_view/ui/draft_button.spec.js
+++ /dev/null
@@ -1,40 +0,0 @@
-/* global Pixelated */
-
-describeComponent('mail_view/ui/draft_button', function(){
- 'use strict';
-
- describe('draft save button', function(){
- beforeEach(function(){
- this.setupComponent('<button></button>');
- });
-
- describe('after initialize', function(){
- it('should be disabled', function(){
- expect(this.$node).toBeDisabled();
- });
- });
-
- describe('when enabled', function(){
- beforeEach(function(){
- this.$node.prop('disabled', false);
- });
-
- it('should be disabled when saving draft message', function(){
- $(document).trigger(Pixelated.events.mail.saveDraft, {});
- expect(this.$node).toBeDisabled();
- });
- });
-
- describe('when disabled', function(){
- beforeEach(function(){
- this.$node.prop('disabled', true);
- });
-
- it('should be enabled when draft message has been saved', function(){
- $(document).trigger(Pixelated.events.mail.draftSaved, {});
- expect(this.$node).not.toBeDisabled();
- });
- });
-
- });
-});