mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-30 19:06:59 -05:00
26 lines
1,002 B
CoffeeScript
26 lines
1,002 B
CoffeeScript
utils = require '../utils'
|
|
sendwithus = require '../../../server/sendwithus'
|
|
request = require '../request'
|
|
User = require '../../../server/models/User'
|
|
|
|
# TODO: need to update this test since /contact calls external Close.io API now
|
|
#xdescribe '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()
|