codecombat/test/app/views/modal/AuthModalView.spec.coffee

13 lines
475 B
CoffeeScript
Raw Normal View History

2014-06-13 16:35:57 -04:00
AuthModalView = require 'views/modal/auth_modal'
RecoverModalView = require 'views/modal/recover_modal'
describe 'AuthModalView', ->
it 'opens the recover modal when you click the recover link', ->
m = new AuthModalView()
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)
2014-06-30 22:16:26 -04:00
expect(args[0] instanceof RecoverModalView).toBeTruthy()