mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
39 lines
1.2 KiB
CoffeeScript
39 lines
1.2 KiB
CoffeeScript
should = require('chai').should()
|
|
SandboxedModule = require('sandboxed-module')
|
|
assert = require('assert')
|
|
path = require('path')
|
|
sinon = require('sinon')
|
|
modulePath = path.join __dirname, "../../../../app/js/Features/Email/EmailBuilder"
|
|
expect = require("chai").expect
|
|
_ = require('underscore')
|
|
_.templateSettings =
|
|
interpolate: /\{\{(.+?)\}\}/g
|
|
|
|
describe "Email Templator ", ->
|
|
|
|
beforeEach ->
|
|
|
|
@settings = appName: "testApp"
|
|
@EmailBuilder = SandboxedModule.require modulePath, requires:
|
|
"settings-sharelatex":@settings
|
|
"logger-sharelatex": log:->
|
|
|
|
describe "projectSharedWithYou", ->
|
|
beforeEach ->
|
|
@opts =
|
|
to:"bob@bob.com"
|
|
first_name:"bob"
|
|
owner:
|
|
email:"sally@hally.com"
|
|
project:
|
|
url:"http://www.project.com"
|
|
name:"standard project"
|
|
@email = @EmailBuilder.buildEmail("projectSharedWithYou", @opts)
|
|
|
|
it "should insert the owner email into the template", ->
|
|
@email.html.indexOf(@opts.owner.email).should.not.equal -1
|
|
@email.subject.indexOf(@opts.owner.email).should.not.equal -1
|
|
|
|
it "should not have undefined in it", ->
|
|
@email.html.indexOf("undefined").should.equal -1
|
|
@email.subject.indexOf("undefined").should.equal -1
|