Mailspring/internal_packages/composer-signature/spec/draft-extension-spec.coffee
Evan Morikawa cc61aa7811 feat(signatures): add signature support in preferences
Summary:
Adding signature support in preferences

Extracting out DraftStore extensions from the Contenteditable component

Moved Contenteditable to the nylas component kit

Build react remote window selection synchronization.

Test Plan: todo

Reviewers: bengotow

Reviewed By: bengotow

Differential Revision: https://phab.nylas.com/D2204
2015-10-29 17:20:41 -04:00

37 lines
1.5 KiB
CoffeeScript

{Message} = require 'nylas-exports'
SignatureDraftStoreExtension = require '../lib/signature-draft-extension'
describe "SignatureDraftStoreExtension", ->
describe "prepareNewDraft", ->
describe "when a signature is defined", ->
beforeEach ->
@signature = "<div id='signature'>This is my signature.</div>"
spyOn(atom.config, 'get').andCallFake =>
@signature
it "should insert the signature at the end of the message or before the first blockquote", ->
a = new Message
draft: true
body: 'This is a test! <blockquote>Hello world</blockquote>'
b = new Message
draft: true
body: 'This is a another test.'
SignatureDraftStoreExtension.prepareNewDraft(a)
expect(a.body).toEqual("This is a test!<div id='signature'>This is my signature.</div><blockquote>Hello world</blockquote>")
SignatureDraftStoreExtension.prepareNewDraft(b)
expect(b.body).toEqual("This is a another test<div id='signature'>This is my signature.</div>")
describe "when a signature is not defined", ->
beforeEach ->
spyOn(atom.config, 'get').andCallFake ->
null
it "should not do anything", ->
a = new Message
draft: true
body: 'This is a test! <blockquote>Hello world</blockquote>'
SignatureDraftStoreExtension.prepareNewDraft(a)
expect(a.body).toEqual('This is a test! <blockquote>Hello world</blockquote>')