mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-26 09:08:05 -05:00
12 lines
453 B
CoffeeScript
12 lines
453 B
CoffeeScript
AuthModal = require 'views/modal/AuthModal'
|
|
RecoverModal = require 'views/modal/RecoverModal'
|
|
|
|
describe 'AuthModal', ->
|
|
it 'opens the recover modal when you click the recover link', ->
|
|
m = new AuthModal()
|
|
m.render()
|
|
spyOn(m, 'openModalView')
|
|
m.$el.find('#link-to-recover').click()
|
|
expect(m.openModalView.calls.count()).toEqual(1)
|
|
args = m.openModalView.calls.argsFor(0)
|
|
expect(args[0] instanceof RecoverModal).toBeTruthy()
|