mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-01-08 13:42:09 -05:00
26 lines
901 B
CoffeeScript
26 lines
901 B
CoffeeScript
|
utils = require '../utils'
|
||
|
sendwithus = require '../../../server/sendwithus'
|
||
|
request = require '../request'
|
||
|
User = require '../../../server/models/User'
|
||
|
|
||
|
describe 'POST /contact', ->
|
||
|
|
||
|
beforeEach utils.wrap (done) ->
|
||
|
spyOn(sendwithus.api, 'send')
|
||
|
@teacher = yield utils.initUser({role: 'teacher'})
|
||
|
yield utils.loginUser(@teacher)
|
||
|
done()
|
||
|
|
||
|
describe 'when recipientID is "schools@codecombat.com"', ->
|
||
|
it 'sends to that email', utils.wrap (done) ->
|
||
|
[res, body] = yield request.postAsync({url: getURL('/contact'), json: {
|
||
|
sender: 'some@email.com'
|
||
|
message: 'A message'
|
||
|
recipientID: 'schools@codecombat.com'
|
||
|
}})
|
||
|
expect(sendwithus.api.send).toHaveBeenCalled()
|
||
|
user = yield User.findById(@teacher.id)
|
||
|
yield new Promise((resolve) -> setTimeout(resolve, 10))
|
||
|
expect(user.get('enrollmentRequestSent')).toBe(true)
|
||
|
done()
|